1
0
Fork 0
forked from len0rd/rockbox

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 MODEL_NUMBER 0
/* define this if you have recording possibility */ /* define this if you have recording possibility */
#ifndef SIMULATOR
#define HAVE_RECORDING 1 #define HAVE_RECORDING 1
#endif
/* define this if you have a bitmap LCD display */ /* define this if you have a bitmap LCD display */
#define HAVE_LCD_BITMAP 1 #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, void audio_set_recording_options(int frequency, int quality,
int source, int channel_mode, int source, int channel_mode,
bool editable, int prerecord_time) bool editable, int prerecord_time,
int monitor)
{ {
/* a dummy */ /* a dummy */
(void)frequency; (void)frequency;
@ -2656,6 +2657,7 @@ void audio_set_recording_options(int frequency, int quality,
(void)channel_mode; (void)channel_mode;
(void)editable; (void)editable;
(void)prerecord_time; (void)prerecord_time;
(void)monitor;
} }
#endif /* SIMULATOR */ #endif /* SIMULATOR */
#endif /* CONFIG_CODEC == MAS3587F */ #endif /* CONFIG_CODEC == MAS3587F */