forked from len0rd/rockbox
Fixed the errors on the sims.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11454 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
5efee7c94a
commit
4aa01ed5f0
2 changed files with 3 additions and 10 deletions
|
@ -2661,17 +2661,10 @@ void audio_init_recording(unsigned int buffer_offset)
|
||||||
/* a dummy */
|
/* a dummy */
|
||||||
(void)buffer_offset;
|
(void)buffer_offset;
|
||||||
}
|
}
|
||||||
void audio_set_recording_options(int frequency, int quality,
|
void audio_set_recording_options(struct audio_recording_options *options)
|
||||||
int source, int channel_mode,
|
|
||||||
bool editable, int prerecord_time)
|
|
||||||
{
|
{
|
||||||
/* a dummy */
|
/* a dummy */
|
||||||
(void)frequency;
|
(void)options;
|
||||||
(void)quality;
|
|
||||||
(void)source;
|
|
||||||
(void)channel_mode;
|
|
||||||
(void)editable;
|
|
||||||
(void)prerecord_time;
|
|
||||||
}
|
}
|
||||||
#endif /* SIMULATOR */
|
#endif /* SIMULATOR */
|
||||||
#endif /* CONFIG_CODEC == MAS3587F */
|
#endif /* CONFIG_CODEC == MAS3587F */
|
||||||
|
|
|
@ -181,7 +181,7 @@ void screen_dump(void)
|
||||||
int x, y;
|
int x, y;
|
||||||
static unsigned char line[BMP_LINESIZE];
|
static unsigned char line[BMP_LINESIZE];
|
||||||
|
|
||||||
create_numbered_filename(filename, "", "dump_", ".bmp", 4,
|
create_numbered_filename(filename, "", "dump_", ".bmp", 4
|
||||||
IF_CNFN_NUM_(, NULL));
|
IF_CNFN_NUM_(, NULL));
|
||||||
DEBUGF("screen_dump\n");
|
DEBUGF("screen_dump\n");
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue