Applied patch to remove poseAsClass call and fixed a compiler warning.

git-svn-id: http://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@580 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
kristianduske 2011-12-30 08:56:14 +00:00
parent 09ad2e875c
commit 6e2609e50b
2 changed files with 2 additions and 3 deletions

View file

@ -23,7 +23,7 @@
<key>NSMainNibFile</key>
<string>Launcher</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<string>SDLApplication</string>
<key>SUEnableAutomaticChecks</key>
<false/>
<key>SUFeedURL</key>

View file

@ -78,7 +78,6 @@ int main (int argc, char **argv)
gFinderLaunch = NO;
}
[SDLApplication poseAsClass:[NSApplication class]];
NSApplicationMain (argc, argv);
NSApplicationMain (argc, (const char**) argv);
return 0;
}