Update SDLMain.m

Fixes crash on launch for SDL2 on OS X.
This commit is contained in:
Martin Proud 2015-12-29 08:14:12 -06:00
parent 6738f37375
commit 44cf166010

View file

@ -16,7 +16,6 @@ static char **gArgv;
@interface SDLApplication : NSApplication
@end
#if !SDL_VERSION_ATLEAST(2,0,0)
@implementation SDLApplication
/* Invoked from the Quit menu item */
- (void)terminate:(id)sender
@ -46,7 +45,6 @@ static char **gArgv;
}
}
@end
#endif
/* The main class of the application, the application's delegate */
@implementation SDLMain