Merge pull request #19845 from Nukem9/lrfix

Libretro core fixes
This commit is contained in:
Henrik Rydgård 2025-01-10 09:20:57 +01:00 committed by GitHub
commit 07f6b6f449
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 13 deletions

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";

View file

@ -601,16 +601,6 @@ struct retro_core_option_v2_definition option_defs_us[] = {
BOOL_OPTIONS,
"disabled"
},
{
"ppsspp_vertex_cache",
"Vertex Cache",
NULL,
"Faster, but may cause temporary flicker.",
NULL,
"video",
BOOL_OPTIONS,
"disabled"
},
{
"ppsspp_texture_scaling_type",
"Texture Upscale Type",