ui, fix sound filter strength not read from config file

This commit is contained in:
kub 2021-04-16 00:23:42 +02:00
parent 75aba9cc65
commit 8b55d18905

View file

@ -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;