diff options
Diffstat (limited to 'macosx/PcsxrController.h')
| -rwxr-xr-x | macosx/PcsxrController.h | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/macosx/PcsxrController.h b/macosx/PcsxrController.h index 836599b5..8688cde6 100755 --- a/macosx/PcsxrController.h +++ b/macosx/PcsxrController.h @@ -12,17 +12,22 @@ void ShowHelpAndExit(FILE* output, int exitCode) __dead2; @interface PcsxrController : NSObject <NSApplicationDelegate> { - ConfigurationController *preferencesController; - CheatController *cheatController; - PluginList *pluginList; - - IBOutlet NSWindow *preferenceWindow; - IBOutlet NSWindow *cheatWindow; - IBOutlet RecentItemsMenu *recentItems; - - BOOL sleepInBackground; - BOOL wasPausedBeforeBGSwitch; - BOOL endAtEmuClose; + ConfigurationController *preferencesController; + CheatController *cheatController; + PluginList *pluginList; + + IBOutlet NSWindow *preferenceWindow; + IBOutlet NSWindow *cheatWindow; + IBOutlet RecentItemsMenu *recentItems; + + struct _PSXflags { + unsigned int sleepInBackground:1; + unsigned int wasPausedBeforeBGSwitch:1; + unsigned int endAtEmuClose:1; + unsigned int reserved:25; + } PSXflags; + + NSMutableArray *skipFiles; } @property (readonly) RecentItemsMenu *recentItems; @property (readonly) BOOL endAtEmuClose; |
