summaryrefslogtreecommitdiff
path: root/firmware/drivers/audio/wm8751.c
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2007-10-09 21:29:20 +0000
committerThom Johansen <thomj@rockbox.org>2007-10-09 21:29:20 +0000
commit8f72192fa29b633da930a2920a8576f5a5cd7cab (patch)
treef1b24a0421b43ed5d66a69c6f27781931ae0490d /firmware/drivers/audio/wm8751.c
parenta07e93938c04d2fe2720bb032006671433719ea6 (diff)
downloadrockbox-8f72192fa29b633da930a2920a8576f5a5cd7cab.tar.gz
rockbox-8f72192fa29b633da930a2920a8576f5a5cd7cab.zip
Increase step size of stereo width to 5% to avoid tediously long list in settings. Reduce max limit from 255% to 250% for cosmetic reasons, value of 255% was chosen because of (very) old restrictions in settings system anyway.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15057 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers/audio/wm8751.c')
-rw-r--r--firmware/drivers/audio/wm8751.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/audio/wm8751.c b/firmware/drivers/audio/wm8751.c
index 4a17496111..6358484c06 100644
--- a/firmware/drivers/audio/wm8751.c
+++ b/firmware/drivers/audio/wm8751.c
@@ -39,7 +39,7 @@ const struct sound_settings_info audiohw_settings[] = {
39 [SOUND_TREBLE] = {"dB", 1, 15, -60, 90, 0}, 39 [SOUND_TREBLE] = {"dB", 1, 15, -60, 90, 0},
40 [SOUND_BALANCE] = {"%", 0, 1,-100, 100, 0}, 40 [SOUND_BALANCE] = {"%", 0, 1,-100, 100, 0},
41 [SOUND_CHANNELS] = {"", 0, 1, 0, 5, 0}, 41 [SOUND_CHANNELS] = {"", 0, 1, 0, 5, 0},
42 [SOUND_STEREO_WIDTH] = {"%", 0, 1, 0, 255, 100}, 42 [SOUND_STEREO_WIDTH] = {"%", 0, 5, 0, 250, 100},
43}; 43};
44 44
45/* Flags used in combination with settings */ 45/* Flags used in combination with settings */