Fix for broken simulators

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7819 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Andy 2005-11-12 04:56:53 +00:00
parent e6e5496535
commit ec2ed49b1f
2 changed files with 5 additions and 1 deletions

View file

@ -7,7 +7,9 @@
#define MODEL_NUMBER 0
/* define this if you have recording possibility */
#ifndef SIMULATOR
#define HAVE_RECORDING 1
#endif
/* define this if you have a bitmap LCD display */
#define HAVE_LCD_BITMAP 1

View file

@ -2647,7 +2647,8 @@ void audio_init_recording(void)
}
void audio_set_recording_options(int frequency, int quality,
int source, int channel_mode,
bool editable, int prerecord_time)
bool editable, int prerecord_time,
int monitor)
{
/* a dummy */
(void)frequency;
@ -2656,6 +2657,7 @@ void audio_set_recording_options(int frequency, int quality,
(void)channel_mode;
(void)editable;
(void)prerecord_time;
(void)monitor;
}
#endif /* SIMULATOR */
#endif /* CONFIG_CODEC == MAS3587F */