소스 검색

Mac: Don't prompt to reopen windows after crash.

We don't support state serialization / resume, so disable the prompt
that pops up asking if you want to reopen the windows.
J?rgen P. Tjern? 11 년 전
부모
커밋
fc9e3a69b7
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/video/cocoa/SDL_cocoaevents.m

+ 1 - 0
src/video/cocoa/SDL_cocoaevents.m

@@ -282,6 +282,7 @@ Cocoa_RegisterApp(void)
         NSDictionary *appDefaults = [[NSDictionary alloc] initWithObjectsAndKeys:
             [NSNumber numberWithBool:NO], @"AppleMomentumScrollSupported",
             [NSNumber numberWithBool:NO], @"ApplePressAndHoldEnabled",
+            [NSNumber numberWithBool:YES], @"ApplePersistenceIgnoreState",
             nil];
         [[NSUserDefaults standardUserDefaults] registerDefaults:appDefaults];
         [appDefaults release];