diff options
author | ritsuka <[email protected]> | 2014-12-21 06:31:11 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2014-12-21 06:31:11 +0000 |
commit | 111e1c720a257569d1fc955ef39aa25409dca8f4 (patch) | |
tree | 379def21c10c3551615f792ed9d5386f4fddd292 /macosx/HBVideo.m | |
parent | f978cb456c49766328108b2be5b4897679e69b18 (diff) |
MacGui: set the correct framerate in the preset.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6631 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBVideo.m')
-rw-r--r-- | macosx/HBVideo.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/HBVideo.m b/macosx/HBVideo.m index 3a709cadb..1fbe684c2 100644 --- a/macosx/HBVideo.m +++ b/macosx/HBVideo.m @@ -543,7 +543,7 @@ { preset[@"VideoFramerateMode"] = @"cfr"; } - if (self.frameRateMode == 0) // Same as source is selected + if (self.frameRate == 0) // Same as source is selected { preset[@"VideoFramerate"] = @"Same as source"; |