summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authordynaflash <[email protected]>2008-02-21 17:34:42 +0000
committerdynaflash <[email protected]>2008-02-21 17:34:42 +0000
commitc665f12384f07740d06debd409f7474ea43d1d12 (patch)
tree7ff24779c847ec8688e3fcefafd54c4a2476b59a /macosx
parent27276d64617365214bccf37b5b03e41bdfbe1963 (diff)
MacGui: Be Gone rotten 64-bit preferences check. Be Gone!
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1312 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx')
-rw-r--r--macosx/Controller.mm2
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;
}