mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2025-01-27 20:12:04 +00:00
Get rid of dithering core option
This commit is contained in:
parent
b0668ddf3c
commit
ba23020cc7
18
libretro.cpp
18
libretro.cpp
@ -2505,23 +2505,6 @@ static void check_variables(void)
|
||||
}
|
||||
}
|
||||
|
||||
var.key = "beetle_psx_dithering";
|
||||
|
||||
if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
|
||||
{
|
||||
static bool old_apply_dither = false;
|
||||
bool apply_dither = true;
|
||||
if (strcmp(var.value, "enabled") == 0)
|
||||
apply_dither = true;
|
||||
else if (strcmp(var.value, "disabled") == 0)
|
||||
apply_dither = false;
|
||||
if (apply_dither != old_apply_dither)
|
||||
{
|
||||
PSXDitherApply(apply_dither);
|
||||
old_apply_dither = apply_dither;
|
||||
}
|
||||
}
|
||||
|
||||
var.key = "beetle_psx_analog_toggle";
|
||||
|
||||
if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
|
||||
@ -3603,7 +3586,6 @@ void retro_set_environment(retro_environment_t cb)
|
||||
|
||||
static const struct retro_variable vars[] = {
|
||||
{ "beetle_psx_cdimagecache", "CD Image Cache (restart); disabled|enabled" },
|
||||
{ "beetle_psx_dithering", "Dithering; enabled|disabled" },
|
||||
{ "beetle_psx_use_mednafen_memcard0_method", "Memcard 0 method; libretro|mednafen" },
|
||||
{ "beetle_psx_shared_memory_cards", "Shared memcards (restart); disabled|enabled" },
|
||||
{ "beetle_psx_experimental_save_states", "Savestates (restart); disabled|enabled" },
|
||||
|
Loading…
x
Reference in New Issue
Block a user