mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
OS X Objective-C files: NSApp -> nsapp as before for a PPC linkage fix
Note: I'm not really sure whether I'm initializing it in the right places. git-svn-id: https://svn.eduke32.com/eduke32@2429 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
91c13a4ee6
commit
8c4151f8af
2 changed files with 18 additions and 6 deletions
|
@ -13,6 +13,8 @@
|
|||
#import "GrpFile.game.h"
|
||||
#import "GameListSource.game.h"
|
||||
|
||||
static id nsapp;
|
||||
|
||||
static struct {
|
||||
int fullscreen;
|
||||
int xdim3d, ydim3d, bpp3d;
|
||||
|
@ -186,7 +188,7 @@ static struct soundQuality_t {
|
|||
|
||||
- (IBAction)cancel:(id)sender
|
||||
{
|
||||
[NSApp abortModal];
|
||||
[nsapp abortModal];
|
||||
}
|
||||
|
||||
- (IBAction)start:(id)sender
|
||||
|
@ -217,7 +219,7 @@ static struct soundQuality_t {
|
|||
|
||||
settings.forcesetup = [alwaysShowButton state] == NSOnState;
|
||||
|
||||
[NSApp stopModal];
|
||||
[nsapp stopModal];
|
||||
}
|
||||
|
||||
- (void)setupRunMode
|
||||
|
@ -305,6 +307,12 @@ static StartupWinController *startwin = nil;
|
|||
|
||||
int startwin_open(void)
|
||||
{
|
||||
// PK: is this the entry point?
|
||||
|
||||
// fix for "ld: absolute address to symbol _NSApp in a different linkage unit not supported"
|
||||
// (OS X 10.6) when building for PPC
|
||||
nsapp = [NSApplication sharedApplication];
|
||||
|
||||
if (startwin != nil) return 1;
|
||||
|
||||
startwin = [[StartupWinController alloc] initWithWindowNibName:@"startwin.game"];
|
||||
|
@ -412,7 +420,7 @@ int startwin_run(void)
|
|||
|
||||
[startwin setupRunMode];
|
||||
|
||||
switch ([NSApp runModalForWindow:[startwin window]]) {
|
||||
switch ([nsapp runModalForWindow:[startwin window]]) {
|
||||
case NSRunStoppedResponse: retval = 1; break;
|
||||
case NSRunAbortedResponse: retval = 0; break;
|
||||
default: retval = -1;
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
|
||||
#include "baselayer.h"
|
||||
|
||||
static id nsapp;
|
||||
|
||||
@interface StartupWinController : NSWindowController
|
||||
{
|
||||
IBOutlet NSButton *alwaysShowButton;
|
||||
|
@ -39,13 +41,13 @@
|
|||
|
||||
- (IBAction)cancel:(id)sender
|
||||
{
|
||||
[NSApp abortModal];
|
||||
[nsapp abortModal];
|
||||
}
|
||||
|
||||
- (IBAction)start:(id)sender
|
||||
{
|
||||
// XXX: write the states of the form controls to their respective homes
|
||||
[NSApp stopModal];
|
||||
[nsapp stopModal];
|
||||
}
|
||||
|
||||
- (void)setupRunMode
|
||||
|
@ -114,6 +116,8 @@ static StartupWinController *startwin = nil;
|
|||
|
||||
int startwin_open(void)
|
||||
{
|
||||
nsapp = [NSApplication sharedApplication];
|
||||
|
||||
if (startwin != nil) return 1;
|
||||
|
||||
startwin = [[StartupWinController alloc] initWithWindowNibName:@"startwin.editor"];
|
||||
|
@ -177,7 +181,7 @@ int startwin_run(void)
|
|||
|
||||
[startwin setupRunMode];
|
||||
|
||||
switch ([NSApp runModalForWindow:[startwin window]]) {
|
||||
switch ([nsapp runModalForWindow:[startwin window]]) {
|
||||
case NSRunStoppedResponse: retval = 1; break;
|
||||
case NSRunAbortedResponse: retval = 0; break;
|
||||
default: retval = -1;
|
||||
|
|
Loading…
Reference in a new issue