Fixed dictionary initialization

This commit is contained in:
Sam Lantinga 2014-03-02 13:06:51 -08:00
parent 0f9bb0cda6
commit da324233e2

View File

@ -272,8 +272,9 @@ Cocoa_RegisterApp(void)
}
[NSApp finishLaunching];
NSDictionary *appDefaults = [[NSDictionary alloc] initWithObjectsAndKeys:
NO, @"AppleMomentumScrollSupported",
NO, @"ApplePressAndHoldEnabled"];
[NSNumber numberWithBool:NO], @"AppleMomentumScrollSupported",
[NSNumber numberWithBool:NO], @"ApplePressAndHoldEnabled",
nil];
[[NSUserDefaults standardUserDefaults] registerDefaults:appDefaults];
}