From 5cd8f6e7d39aa2e17d5d73fd4f21746fbccbdcbe Mon Sep 17 00:00:00 2001 From: LodanZark Date: Thu, 21 Sep 2017 15:13:17 +0100 Subject: [PATCH] change the Lowpass core option to lowercase change the Lowpass core option to lowercase for better consistence with other options --- libretro/libretro.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libretro/libretro.c b/libretro/libretro.c index 262c5c7..a1adb2b 100644 --- a/libretro/libretro.c +++ b/libretro/libretro.c @@ -1045,7 +1045,7 @@ static void check_variables(void) var.key = "genesis_plus_gx_audio_filter"; environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var); { - if (!strcmp(var.value, "Lowpass")) + if (!strcmp(var.value, "lowpass")) config.filter = 1; #if HAVE_EQ @@ -1638,7 +1638,7 @@ void retro_set_environment(retro_environment_t cb) { "genesis_plus_gx_ym2413", "Master System FM; auto|disabled|enabled" }, { "genesis_plus_gx_dac_bits", "YM2612 DAC quantization; disabled|enabled" }, { "genesis_plus_gx_sound_output", "Sound output; mono|stereo" }, - { "genesis_plus_gx_audio_filter", "Audio filter; disabled|Lowpass" }, + { "genesis_plus_gx_audio_filter", "Audio filter; disabled|lowpass" }, { "genesis_plus_gx_lowpass_range", "Low-pass filter %; 60|65|70|75|80|85|90|95|5|10|15|20|25|30|35|40|45|50|55"}, #if HAVE_EQ