diff options
author | ritsuka <[email protected]> | 2015-01-12 15:38:51 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2015-01-12 15:38:51 +0000 |
commit | 2d6aa981b2da6536051b4d350d3b491bd970a957 (patch) | |
tree | fe7360814026296c57bc195d93e4cf635f1a4b84 | |
parent | 4c9a2335aaeadb89bce515b5cd5f0ad66dd7788d (diff) |
MacGui: fix frame rate mode description in the queue.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6737 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | macosx/HBQueueController.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/HBQueueController.mm b/macosx/HBQueueController.mm index 3070aedbf..7c25ac7b4 100644 --- a/macosx/HBQueueController.mm +++ b/macosx/HBQueueController.mm @@ -888,7 +888,7 @@ else { // we have a specified, constant framerate - if (job.video.frameRate == 0) + if (job.video.frameRateMode == 0) { videoInfo = [NSString stringWithFormat:@"%@ Framerate: %@ (Peak Frame Rate)", videoInfo, @(hb_video_framerate_get_name(job.video.frameRate))]; } |