diff options
author | 2015-04-01 13:44:07 +1100 | |
---|---|---|
committer | 2015-04-01 13:51:10 +1100 | |
commit | 8a4145b48c0c20a9d4daa524b7f360a9c592f309 (patch) | |
tree | a5213757bf4e2ef79a470645f13114b09f837213 /src/emu/machine.c | |
parent | 02c9e215f9c3c5c5d8536e4e8d50dc77271e61b1 (diff) |
Start removing the use of OSD macros outside OSD since core objects are shared between OSD builds
Diffstat (limited to 'src/emu/machine.c')
-rw-r--r-- | src/emu/machine.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/machine.c b/src/emu/machine.c index badd3ecc90e..4791aa0f590 100644 --- a/src/emu/machine.c +++ b/src/emu/machine.c @@ -385,7 +385,7 @@ int running_machine::run(bool firstrun) { g_profiler.start(PROFILER_EXTRA); - #ifdef SDLMAME_EMSCRIPTEN + #if defined(EMSCRIPTEN) //break out to our async javascript loop and halt js_set_main_loop(this); #endif @@ -1344,7 +1344,7 @@ void system_time::full_time::set(struct tm &t) // JAVASCRIPT PORT-SPECIFIC //************************************************************************** -#ifdef SDLMAME_EMSCRIPTEN +#if defined(EMSCRIPTEN) static running_machine * jsmess_machine; @@ -1377,4 +1377,4 @@ sound_manager * js_get_sound() { return &(jsmess_machine->sound()); } -#endif /* SDLMAME_EMSCRIPTEN */ +#endif /* defined(EMSCRIPTEN) */ |