diff options
author | dynaflash <[email protected]> | 2007-06-14 16:59:44 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2007-06-14 16:59:44 +0000 |
commit | fbab2d391f2a1d7312aade22d3ef2802f879b338 (patch) | |
tree | b32eb5a7c06be55ed9f2de36b4f3a006101d1054 /macosx/Controller.mm | |
parent | 8905d54302cd7c40328a83640b811577f66c098f (diff) |
MacGui: Remove Preference introduced in rev 620 to make users enable 64bit mp4 option.
The option is available at all times as per jbrjake.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@621 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/Controller.mm')
-rw-r--r-- | macosx/Controller.mm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm index 8046dabe6..0addaf375 100644 --- a/macosx/Controller.mm +++ b/macosx/Controller.mm @@ -847,7 +847,7 @@ return registrationDictionary; /* 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 && [fDstMpgLargeFileCheck state] == NSOnState) + if ([fDstMpgLargeFileCheck state] == NSOnState) { job->largeFileSize = 1; } @@ -1296,10 +1296,7 @@ return registrationDictionary; /* We enable the create chapters checkbox here since we are .mp4*/ [fCreateChapterMarkers setEnabled: YES]; /* We show the Large File (64 bit formatting) checkbox since we are .mp4 */ - if ([[NSUserDefaults standardUserDefaults] boolForKey:@"AllowLargeFiles"] > 0) - { [fDstMpgLargeFileCheck setHidden: NO]; - } break; case 1: ext = "avi"; |