sdl: dendy mode was setting PAL flag, yikes
This commit is contained in:
parent
640f292d86
commit
5440ad057a
|
@ -142,10 +142,10 @@ void FCEUD_VideoChanged()
|
||||||
{
|
{
|
||||||
int buf;
|
int buf;
|
||||||
g_config->getOption("SDL.PAL", &buf);
|
g_config->getOption("SDL.PAL", &buf);
|
||||||
if(buf)
|
if(buf == 1)
|
||||||
PAL = 1;
|
PAL = 1;
|
||||||
else
|
else
|
||||||
PAL = 0;
|
PAL = 0; // NTSC and Dendy
|
||||||
}
|
}
|
||||||
|
|
||||||
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
||||||
|
|
Loading…
Reference in New Issue