summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/ui/ui.c
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2015-04-01 13:44:07 +1100
committer Vas Crabb <vas@vastheman.com>2015-04-01 13:51:10 +1100
commit8a4145b48c0c20a9d4daa524b7f360a9c592f309 (patch)
treea5213757bf4e2ef79a470645f13114b09f837213 /src/emu/ui/ui.c
parent02c9e215f9c3c5c5d8536e4e8d50dc77271e61b1 (diff)
Start removing the use of OSD macros outside OSD since core objects are shared between OSD builds
Diffstat (limited to 'src/emu/ui/ui.c')
-rw-r--r--src/emu/ui/ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/ui/ui.c b/src/emu/ui/ui.c
index b968937cbea..8d119e131f6 100644
--- a/src/emu/ui/ui.c
+++ b/src/emu/ui/ui.c
@@ -319,7 +319,7 @@ void ui_manager::display_startup_screens(bool first_time, bool show_disclaimer)
if (!first_time || (str > 0 && str < 60*5) || &machine().system() == &GAME_NAME(___empty) || (machine().debug_flags & DEBUG_FLAG_ENABLED) != 0)
show_gameinfo = show_warnings = show_disclaimer = show_mandatory_fileman = FALSE;
- #ifdef SDLMAME_EMSCRIPTEN
+ #if defined(EMSCRIPTEN)
// also disable for the JavaScript port since the startup screens do not run asynchronously
show_gameinfo = show_warnings = show_disclaimer = FALSE;
#endif