OS X: Fix slow boot.

git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@91641 e17a0e51-4ae3-4d35-97c3-1a29b211df97
This commit is contained in:
SND\MaddTheSane_cp 2014-09-27 16:50:21 +00:00
parent 8e79a5b83f
commit 71ac2146a8
1 changed files with 4 additions and 2 deletions

View File

@ -784,7 +784,8 @@ otherblock();\
@"PauseInBackground": @YES,
@"Widescreen": @NO,
@"NetPlay": @NO,
@"DidMoveMemoryObjects": @NO};
@"DidMoveMemoryObjects": @NO,
@"NoFastBoot": @NO};
[defaults registerDefaults:appDefaults];
@ -809,7 +810,8 @@ otherblock();\
@"SpuIrqAlways": [NSValue valueWithPointer:&Config.SpuIrq],
@"RootCounterFix": [NSValue valueWithPointer:&Config.RCntFix],
@"VideoSyncWAFix": [NSValue valueWithPointer:&Config.VSyncWA],
@"Widescreen": [NSValue valueWithPointer:&Config.Widescreen]};
@"Widescreen": [NSValue valueWithPointer:&Config.Widescreen],
@"NoFastBoot": [NSValue valueWithPointer:&Config.SlowBoot]};
// setup application support paths
NSFileManager *manager = [NSFileManager defaultManager];