mirror of
https://github.com/Pecusx/libretro-atari800.git
synced 2026-05-20 22:33:22 +02:00
fix ntsc pal switch.
This commit is contained in:
@@ -229,11 +229,11 @@ static void update_variables(void)
|
|||||||
|
|
||||||
if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
|
if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
|
||||||
{
|
{
|
||||||
if (strcmp(var.value, "enabled") == 0)
|
if (strcmp(var.value, "NTSC") == 0)
|
||||||
{
|
{
|
||||||
Atari800_tv_mode = Atari800_TV_NTSC;
|
Atari800_tv_mode = Atari800_TV_NTSC;
|
||||||
}
|
}
|
||||||
else if (strcmp(var.value, "disabled") == 0)
|
else if (strcmp(var.value, "PAL") == 0)
|
||||||
{
|
{
|
||||||
Atari800_tv_mode = Atari800_TV_PAL;
|
Atari800_tv_mode = Atari800_TV_PAL;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user