diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2006-04-04 18:26:00 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2006-04-04 18:26:00 +0000 |
| commit | 605c9674c16c49daf5fbfd28abba41e3073b4699 (patch) | |
| tree | 74ab70f65bee8694ce115766374bf544e632d3bb | |
| parent | 0926f64e44e271f287b616d8c7460e6fc256240e (diff) | |
| download | rockbox-605c9674c16c49daf5fbfd28abba41e3073b4699.zip rockbox-605c9674c16c49daf5fbfd28abba41e3073b4699.tar.gz rockbox-605c9674c16c49daf5fbfd28abba41e3073b4699.tar.bz2 rockbox-605c9674c16c49daf5fbfd28abba41e3073b4699.tar.xz | |
Correct minimum value for TLV320 volume
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9495 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/sound.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/sound.c b/firmware/sound.c index e682d58..7768afd 100644 --- a/firmware/sound.c +++ b/firmware/sound.c @@ -304,7 +304,7 @@ static int tenthdb2master(int db) /* 0101111 == mute (0x2f) */ if (db < VOLUME_MIN) { - return 0x0; + return 0x2f; } else { return((db/10)+73+0x30); } |