summaryrefslogtreecommitdiff
path: root/firmware/sound.c
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2010-05-11 04:13:04 +0000
committerMichael Sevakis <jethead71@rockbox.org>2010-05-11 04:13:04 +0000
commitf16912f624ed5cb9484b3570d241219ee75e81ac (patch)
tree48ae3d7b36476899b3f5c854d410d85480a6c06d /firmware/sound.c
parent8ce5b01ec717a8ee1d765ec9c0d4d6f20868092e (diff)
r25940 oops. No, no, no, that wasn't quite right. Must be truthful about the level in decidecibels for subsequent code.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25941 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/sound.c')
-rw-r--r--firmware/sound.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/sound.c b/firmware/sound.c
index 2973721e1c..b56e610034 100644
--- a/firmware/sound.c
+++ b/firmware/sound.c
@@ -296,7 +296,7 @@ void sound_set_bass(int value)
#if !defined(AUDIOHW_HAVE_CLIPPING)
#if defined(HAVE_WM8750) || defined(HAVE_WM8751)
- current_bass = value / 15;
+ current_bass = value;
#else
current_bass = value * 10;
#endif
@@ -320,7 +320,7 @@ void sound_set_treble(int value)
#if !defined(AUDIOHW_HAVE_CLIPPING)
#if defined(HAVE_WM8750) || defined(HAVE_WM8751)
- current_treble = value / 15;
+ current_treble = value;
#else
current_treble = value * 10;
#endif