libretro: Fix buffered frames option values

This commit is contained in:
Nukem
2025-01-09 21:22:57 -05:00
parent 59a98f6f32
commit 02857afba4
+3 -3
View File
@@ -772,11 +772,11 @@ static void check_variables(CoreParameter &coreParam)
if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
{
if (!strcmp(var.value, "No buffer"))
g_Config.iInflightFrames = 0;
else if (!strcmp(var.value, "Up to 1"))
g_Config.iInflightFrames = 1;
else if (!strcmp(var.value, "Up to 2"))
else if (!strcmp(var.value, "Up to 1"))
g_Config.iInflightFrames = 2;
else if (!strcmp(var.value, "Up to 2"))
g_Config.iInflightFrames = 3;
}
var.key = "ppsspp_skip_buffer_effects";