diff options
| author | Magnus Holmgren <magnushol@gmail.com> | 2005-08-14 06:22:53 +0000 |
|---|---|---|
| committer | Magnus Holmgren <magnushol@gmail.com> | 2005-08-14 06:22:53 +0000 |
| commit | c78c22954b17f84c2efccf473caabaad3cc67506 (patch) | |
| tree | a6dbeef9caf676698ca64b403008a04c9e50cbe4 /apps | |
| parent | fb5d2629a1842f7c201b3d62d6e5050b42de9b19 (diff) | |
| download | rockbox-c78c22954b17f84c2efccf473caabaad3cc67506.zip rockbox-c78c22954b17f84c2efccf473caabaad3cc67506.tar.gz rockbox-c78c22954b17f84c2efccf473caabaad3cc67506.tar.bz2 rockbox-c78c22954b17f84c2efccf473caabaad3cc67506.tar.xz | |
Pre-amp is signed...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7326 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/settings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings.c b/apps/settings.c index 295a32f..1cb6b23 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -431,7 +431,7 @@ static const struct bit_entry hd_bits[] = {1, S_O(replaygain), false, "replaygain", off_on }, {1, S_O(replaygain_track), false, "replaygain type", "track,album" }, {1, S_O(replaygain_noclip), false, "replaygain noclip", off_on }, - {8, S_O(replaygain_preamp), 0, "replaygain preamp", NULL }, + {8 | SIGNED, S_O(replaygain_preamp), 0, "replaygain preamp", NULL }, #endif /* If values are just added to the end, no need to bump the version. */ |