diff options
Diffstat (limited to 'src/osd/sdl/video.cpp')
-rw-r--r-- | src/osd/sdl/video.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/osd/sdl/video.cpp b/src/osd/sdl/video.cpp index 5bb3910d8f9..8212e0a4586 100644 --- a/src/osd/sdl/video.cpp +++ b/src/osd/sdl/video.cpp @@ -191,12 +191,10 @@ void sdl_osd_interface::extract_video_config() stemp = options().video(); if (strcmp(stemp, "auto") == 0) { -#if (defined SDLMAME_WIN32) - stemp = "opengl"; -#elif (defined SDLMAME_MACOSX) - stemp = "bgfx"; -#else +#if (defined SDLMAME_EMSCRIPTEN) stemp = "soft"; +#else + stemp = "bgfx"; #endif } if (strcmp(stemp, SDLOPTVAL_SOFT) == 0) |