notaz.gp2x.de
/
picodrive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
75aba9c
)
ui, fix sound filter strength not read from config file
author
kub
<derkub@gmail.com>
Thu, 15 Apr 2021 22:23:42 +0000
(
00:23
+0200)
committer
kub
<derkub@gmail.com>
Thu, 15 Apr 2021 22:23:42 +0000
(
00:23
+0200)
platform/common/config_file.c
patch
|
blob
|
blame
|
history
diff --git
a/platform/common/config_file.c
b/platform/common/config_file.c
index
59bbe12
..
8c80f7d
100644
(file)
--- 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;