summaryrefslogtreecommitdiffstats
path: root/video/out/vo.c
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2023-10-15 10:18:49 -0500
committerDudemanguy <random342@airmail.cc>2023-10-25 16:16:37 +0000
commit9924102c6685495ecbe4abdb6ca1a38c27919317 (patch)
tree17793d443e10042d4e07a2916e7c59bb9e08c330 /video/out/vo.c
parent7aed492ccc48fd32084d7dfe65a50b5b90d8411a (diff)
downloadmpv-9924102c6685495ecbe4abdb6ca1a38c27919317.tar.bz2
mpv-9924102c6685495ecbe4abdb6ca1a38c27919317.tar.xz
options: rename --override-display-fps to --display-fps-override
Other similar options are in the form of --foo-override not --override-foo. The display-fps one was backwards so flip it around the other way for consistency reasons.
Diffstat (limited to 'video/out/vo.c')
-rw-r--r--video/out/vo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/vo.c b/video/out/vo.c
index 9b48ad20a7..0893202e72 100644
--- a/video/out/vo.c
+++ b/video/out/vo.c
@@ -565,7 +565,7 @@ static void update_display_fps(struct vo *vo)
in->reported_display_fps = fps;
}
- double display_fps = vo->opts->override_display_fps;
+ double display_fps = vo->opts->display_fps_override;
if (display_fps <= 0)
display_fps = in->reported_display_fps;