diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2005-10-16 11:15:51 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2005-10-16 11:15:51 +0000 |
| commit | 49608086510a37f75907caf4d1797a0a6bf627ac (patch) | |
| tree | a4beac791b6e1800a88c995171136b7eaff0fae1 /apps | |
| parent | 62634a323ebaff42328f7b6ca21c614e222d4c58 (diff) | |
| download | rockbox-49608086510a37f75907caf4d1797a0a6bf627ac.zip rockbox-49608086510a37f75907caf4d1797a0a6bf627ac.tar.gz rockbox-49608086510a37f75907caf4d1797a0a6bf627ac.tar.bz2 rockbox-49608086510a37f75907caf4d1797a0a6bf627ac.tar.xz | |
Fixed beep setting strings in .cfg files.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7634 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/settings.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings.c b/apps/settings.c index 6935f35..0f3c95d 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -439,7 +439,7 @@ static const struct bit_entry hd_bits[] = "track,album,track shuffle" }, {1, S_O(replaygain_noclip), false, "replaygain noclip", off_on }, {8 | SIGNED, S_O(replaygain_preamp), 0, "replaygain preamp", NULL }, - {2, S_O(beep), 0, "off,weak,moderate,strong", NULL }, + {2, S_O(beep), 0, "beep", "off,weak,moderate,strong" }, #endif #ifdef HAVE_DIRCACHE {1, S_O(dircache), false, "dircache", off_on }, @@ -1348,7 +1348,7 @@ void settings_reset(void) { bool set_bool(const char* string, bool* variable ) { - return set_bool_options(string, variable, + return set_bool_options(string, variable, STR(LANG_SET_BOOL_YES), STR(LANG_SET_BOOL_NO), NULL); |