summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2022-02-18 08:14:02 -0500
committer arbee <rb6502@users.noreply.github.com>2022-02-18 08:14:02 -0500
commiteee7d7d155d527996890a90c952f9856675c965d (patch)
treeaa0a1a5498f05f7467864d59356f757b0621c492
parent57eca5d586fe51bbf4dd0edf95c669ab0c31fd22 (diff)
sdl: -video auto now means "bgfx" on all platforms. [R. Belmont]
-rw-r--r--src/osd/sdl/video.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/osd/sdl/video.cpp b/src/osd/sdl/video.cpp
index 5bb3910d8f9..1c6e68f8aaa 100644
--- a/src/osd/sdl/video.cpp
+++ b/src/osd/sdl/video.cpp
@@ -191,13 +191,7 @@ 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
- stemp = "soft";
-#endif
}
if (strcmp(stemp, SDLOPTVAL_SOFT) == 0)
video_config.mode = VIDEO_MODE_SOFT;