[Libretro] Remove "Skip Buffer Effects" core option

This commit is contained in:
Bobby Smith 2023-05-26 13:07:32 +02:00
parent 9379a6be37
commit 2663a85cc3
2 changed files with 0 additions and 19 deletions

View File

@ -620,15 +620,6 @@ static void check_variables(CoreParameter &coreParam)
}
#endif
var.key = "ppsspp_skip_buffer_effects";
if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
{
if (!strcmp(var.value, "disabled"))
g_Config.bSkipBufferEffects = false;
else
g_Config.bSkipBufferEffects = true;
}
var.key = "ppsspp_skip_gpu_readbacks";
if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
{

View File

@ -311,16 +311,6 @@ struct retro_core_option_v2_definition option_defs_us[] = {
"Disabled"
},
#endif
{
"ppsspp_skip_buffer_effects",
"Skip Buffer Effects",
NULL,
"Faster, but may cause major rendering issues.",
NULL,
"video",
BOOL_OPTIONS,
"disabled"
},
{
"ppsspp_skip_gpu_readbacks",
"Skip GPU Readbacks",