mirror of
https://github.com/holub/mame
synced 2025-10-06 09:00:04 +03:00
make 'auto' on SDL Windows mean 'OpenGl' The MACOSX build is already this way so hopefully not an issue. Non-GL performance on Windows is terrible (I struggle to get >100% on pacman)
This commit is contained in:
parent
cc1d237941
commit
487b50fa14
@ -648,7 +648,7 @@ void sdl_osd_interface::extract_video_config(running_machine &machine)
|
|||||||
stemp = options().video();
|
stemp = options().video();
|
||||||
if (strcmp(stemp, "auto") == 0)
|
if (strcmp(stemp, "auto") == 0)
|
||||||
{
|
{
|
||||||
#ifdef SDLMAME_MACOSX
|
#if (defined SDLMAME_MACOSX || defined SDLMAME_WIN32)
|
||||||
stemp = "opengl";
|
stemp = "opengl";
|
||||||
#else
|
#else
|
||||||
stemp = "soft";
|
stemp = "soft";
|
||||||
|
Loading…
Reference in New Issue
Block a user