diff options
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) */ |