diff options
Diffstat (limited to 'macosx/Controller.mm')
-rw-r--r-- | macosx/Controller.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm index ed1a5bab3..2b78c54e0 100644 --- a/macosx/Controller.mm +++ b/macosx/Controller.mm @@ -1421,7 +1421,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It /* We set the largeFileSize (64 bit formatting) variable here to allow for > 4gb files based on the format being mpeg4 and the checkbox being checked *Note: this will break compatibility with some target devices like iPod, etc.!!!!*/ - if ([[NSUserDefaults standardUserDefaults] boolForKey:@"AllowLargeFiles"] > 0 && [fDstMp4LargeFileCheck state] == NSOnState) + if ([fDstMp4LargeFileCheck state] == NSOnState) { job->largeFileSize = 1; } |