Fix yellows

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25720 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2010-04-25 23:02:22 +00:00
parent 668bd3445e
commit 7eaea74f33
2 changed files with 3 additions and 3 deletions

View file

@ -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)
{

View file

@ -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)