diff options
| author | Peter D'Hoye <peter.dhoye@gmail.com> | 2006-04-30 23:51:24 +0000 |
|---|---|---|
| committer | Peter D'Hoye <peter.dhoye@gmail.com> | 2006-04-30 23:51:24 +0000 |
| commit | 0d6b5557a113afab41c7ef239c9ce5ddabebea8b (patch) | |
| tree | 7f79fb7f8fb43a18f4e25184126b7dd09593a7da /apps | |
| parent | 67ff2624bfc279418578cef3914b9a93e44b4126 (diff) | |
| download | rockbox-0d6b5557a113afab41c7ef239c9ce5ddabebea8b.zip rockbox-0d6b5557a113afab41c7ef239c9ce5ddabebea8b.tar.gz rockbox-0d6b5557a113afab41c7ef239c9ce5ddabebea8b.tar.bz2 rockbox-0d6b5557a113afab41c7ef239c9ce5ddabebea8b.tar.xz | |
Fix red builds?
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9843 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/recorder/recording.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c index f4a3580..cf361ee 100644 --- a/apps/recorder/recording.c +++ b/apps/recorder/recording.c @@ -552,7 +552,12 @@ bool recording_screen(void) #if (CONFIG_LED == LED_REAL) && !defined(SIMULATOR) ata_set_led_enabled(false); #endif + +#ifndef SIMULATOR audio_init_recording(talk_get_bufsize()); +#else + audio_init_recording(0); +#endif sound_set_volume(global_settings.volume); |