Get rid of dithering core option

This commit is contained in:
twinaphex 2014-12-22 02:25:04 +01:00
parent b0668ddf3c
commit ba23020cc7

View File

@ -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" },