From: kub Date: Thu, 15 Apr 2021 22:23:42 +0000 (+0200) Subject: ui, fix sound filter strength not read from config file X-Git-Tag: v2.00~552 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b55d18905b9ce7cafd16b137a29d9ed69210cb4;p=picodrive.git ui, fix sound filter strength not read from config file --- diff --git a/platform/common/config_file.c b/platform/common/config_file.c index 59bbe122..8c80f7d5 100644 --- a/platform/common/config_file.c +++ b/platform/common/config_file.c @@ -280,7 +280,7 @@ static int custom_read(menu_entry *me, const char *var, const char *val) return 1; case MA_OPT_SOUND_ALPHA: - if (strcasecmp(var, "Filter strength (alpha)") != 0) return 0; + if (strcasecmp(var, "Filter strength") != 0) return 0; PicoIn.sndFilterAlpha = 0x10000 * atof(val); return 1;