summaryrefslogtreecommitdiff
path: root/firmware/drivers/audio/uda1380.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/uda1380.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/uda1380.c')
-rw-r--r--firmware/drivers/audio/uda1380.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/audio/uda1380.c b/firmware/drivers/audio/uda1380.c
index 88dd9d3abc..7ff34e7745 100644
--- a/firmware/drivers/audio/uda1380.c
+++ b/firmware/drivers/audio/uda1380.c
@@ -32,7 +32,7 @@ const struct sound_settings_info audiohw_settings[] = {
32 [SOUND_TREBLE] = {"dB", 0, 2, 0, 6, 0}, 32 [SOUND_TREBLE] = {"dB", 0, 2, 0, 6, 0},
33 [SOUND_BALANCE] = {"%", 0, 1,-100, 100, 0}, 33 [SOUND_BALANCE] = {"%", 0, 1,-100, 100, 0},
34 [SOUND_CHANNELS] = {"", 0, 1, 0, 5, 0}, 34 [SOUND_CHANNELS] = {"", 0, 1, 0, 5, 0},
35 [SOUND_STEREO_WIDTH] = {"%", 0, 1, 0, 255, 100}, 35 [SOUND_STEREO_WIDTH] = {"%", 0, 5, 0, 250, 100},
36 [SOUND_LEFT_GAIN] = {"dB", 1, 1,-128, 96, 0}, 36 [SOUND_LEFT_GAIN] = {"dB", 1, 1,-128, 96, 0},
37 [SOUND_RIGHT_GAIN] = {"dB", 1, 1,-128, 96, 0}, 37 [SOUND_RIGHT_GAIN] = {"dB", 1, 1,-128, 96, 0},
38 [SOUND_MIC_GAIN] = {"dB", 1, 1,-128, 108, 16}, 38 [SOUND_MIC_GAIN] = {"dB", 1, 1,-128, 108, 16},