(OSX PPC) Comment out NSApplicationDelegate for OSX 10.5 PPC

This commit is contained in:
twinaphex 2014-02-11 19:07:05 +11:00
parent efd413de62
commit a5f59f6260
11 changed files with 5 additions and 1 deletions

View File

@ -32,7 +32,11 @@
@end
@interface RetroArch_OSX : NSObject<RetroArch_Platform, NSApplicationDelegate>
@interface RetroArch_OSX : NSObject<RetroArch_Platform
#ifdef MAC_OS_X_VERSION_10_6
, NSApplicationDelegate
#endif
>
{
NSWindow* _window;
NSString* _configDirectory;