mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-24 02:30:46 +00:00
Mac OS X: Add correct default values for 'gameexecutable' cfg string so that the Mapster32 test feature works with .app bundles.
Note: You may encounter a crash if you try to test your map and Mapster32 is running fullscreen. git-svn-id: https://svn.eduke32.com/eduke32@2684 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
9df8c00bdc
commit
d015c4acdc
1 changed files with 4 additions and 1 deletions
|
@ -248,9 +248,12 @@ void correct_sprite_yoffset(int32_t i);
|
|||
|
||||
extern uint8_t hlsectorbitmap[MAXSECTORS>>3];
|
||||
|
||||
#ifdef _WIN32
|
||||
#if defined(_WIN32)
|
||||
#define DEFAULT_GAME_EXEC "eduke32.exe"
|
||||
#define DEFAULT_GAME_LOCAL_EXEC "eduke32.exe"
|
||||
#elif defined(__APPLE__)
|
||||
#define DEFAULT_GAME_EXEC "EDuke32.app/Contents/MacOS/eduke32"
|
||||
#define DEFAULT_GAME_LOCAL_EXEC "EDuke32.app/Contents/MacOS/eduke32"
|
||||
#else
|
||||
#define DEFAULT_GAME_EXEC "eduke32"
|
||||
#define DEFAULT_GAME_LOCAL_EXEC "./eduke32"
|
||||
|
|
Loading…
Reference in a new issue