sdl: -video auto now means "bgfx" on all platforms. [R. Belmont]

This commit is contained in:
arbee 2022-02-18 08:14:02 -05:00
parent 57eca5d586
commit eee7d7d155

View File

@ -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;