diff options
Diffstat (limited to 'macosx/Source/PcsxrController.m')
| -rw-r--r-- | macosx/Source/PcsxrController.m | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/macosx/Source/PcsxrController.m b/macosx/Source/PcsxrController.m index 8760801f..64067c54 100644 --- a/macosx/Source/PcsxrController.m +++ b/macosx/Source/PcsxrController.m @@ -63,9 +63,21 @@ void ShowHelpAndExit(FILE* output, int exitCode) @property (strong) NSWindow *preferenceWindow; @property (strong) NSWindow *cheatWindow; @property (nonatomic) DASessionRef diskSession; +@property (strong, readwrite) CheatController *cheatController; @end @implementation PcsxrController +{ + ConfigurationController *preferencesController; + PluginList *pluginList; + struct _PSXflags { + unsigned int sleepInBackground:1; + unsigned int wasPausedBeforeBGSwitch:1; + unsigned int endAtEmuClose:1; + unsigned int wasPausedBeforeDiscEject:1; + unsigned int reserved:28; + } PSXflags; +} @synthesize recentItems; @synthesize skipFiles; @synthesize cheatController; |
