sdl: dendy mode was setting PAL flag, yikes

This commit is contained in:
feos-tas 2015-07-01 15:57:21 +00:00
parent 640f292d86
commit 5440ad057a
1 changed files with 2 additions and 2 deletions

View File

@ -142,10 +142,10 @@ void FCEUD_VideoChanged()
{
int buf;
g_config->getOption("SDL.PAL", &buf);
if(buf)
if(buf == 1)
PAL = 1;
else
PAL = 0;
PAL = 0; // NTSC and Dendy
}
#if SDL_VERSION_ATLEAST(2, 0, 0)