summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-04-25 23:02:22 +0000
committerThomas Martitz <kugel@rockbox.org>2010-04-25 23:02:22 +0000
commit7eaea74f331b594eaf0154691e704259e5cb915a (patch)
tree09ec3b0d166e7a8603d4e652d5a303cc68b8927d
parent668bd3445ecb39483160bbb310afa4337c83d0d9 (diff)
downloadrockbox-7eaea74f331b594eaf0154691e704259e5cb915a.tar.gz
rockbox-7eaea74f331b594eaf0154691e704259e5cb915a.zip
Fix yellows
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25720 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/sound.c2
-rw-r--r--uisimulator/sdl/sound.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/firmware/sound.c b/firmware/sound.c
index 84c022e0c0..d64dfcfdb9 100644
--- a/firmware/sound.c
+++ b/firmware/sound.c
@@ -149,7 +149,7 @@ void sound_set_dsp_callback(int (*func)(int, intptr_t))
}
#endif
-#if CONFIG_CODEC == MAS3507D
+#if (CONFIG_CODEC == MAS3507D) && !defined(SIMULATOR)
/* convert tenth of dB volume (-780..+180) to dac3550 register value */
static int tenthdb2reg(int db)
{
diff --git a/uisimulator/sdl/sound.c b/uisimulator/sdl/sound.c
index aa689b921d..8d9dbeb743 100644
--- a/uisimulator/sdl/sound.c
+++ b/uisimulator/sdl/sound.c
@@ -379,10 +379,10 @@ void audiohw_set_channel(int value) { (void)value; }
void audiohw_set_stereo_width(int value){ (void)value; }
#endif
#if defined(AUDIOHW_HAVE_BASS_CUTOFF)
-void audiohw_set_bass_cutoff(value) { (void)value; }
+void audiohw_set_bass_cutoff(int value) { (void)value; }
#endif
#if defined(AUDIOHW_HAVE_TREBLE_CUTOFF)
-void audiohw_set_treble_cutoff(value) { (void)value; }
+void audiohw_set_treble_cutoff(int value){ (void)value; }
#endif
#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
int mas_codec_readreg(int reg)