change the Lowpass core option to lowercase

change the Lowpass core option to lowercase for better consistence with other options
This commit is contained in:
LodanZark 2017-09-21 15:13:17 +01:00 committed by GitHub
parent 7a0af38584
commit 5cd8f6e7d3

View File

@ -1045,7 +1045,7 @@ static void check_variables(void)
var.key = "genesis_plus_gx_audio_filter"; var.key = "genesis_plus_gx_audio_filter";
environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var); environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var);
{ {
if (!strcmp(var.value, "Lowpass")) if (!strcmp(var.value, "lowpass"))
config.filter = 1; config.filter = 1;
#if HAVE_EQ #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_ym2413", "Master System FM; auto|disabled|enabled" },
{ "genesis_plus_gx_dac_bits", "YM2612 DAC quantization; disabled|enabled" }, { "genesis_plus_gx_dac_bits", "YM2612 DAC quantization; disabled|enabled" },
{ "genesis_plus_gx_sound_output", "Sound output; mono|stereo" }, { "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"}, { "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 #if HAVE_EQ