diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2013-05-31 06:24:06 -0400 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2013-05-31 06:24:06 -0400 |
| commit | 1b4135ec0d572f0e85421051cc855be7c5e516e7 (patch) | |
| tree | 439427154e4ac1b981dd24a846a59499e47fef50 | |
| parent | 92f1ecfc7b3a301b0828ea0306e8a61852dcc9eb (diff) | |
| download | rockbox-1b4135ec0d572f0e85421051cc855be7c5e516e7.zip rockbox-1b4135ec0d572f0e85421051cc855be7c5e516e7.tar.gz rockbox-1b4135ec0d572f0e85421051cc855be7c5e516e7.tar.bz2 rockbox-1b4135ec0d572f0e85421051cc855be7c5e516e7.tar.xz | |
Should use HAVE_RECORDING, not AUDIO_HAVE_RECORDING in playback.c
SIM should work like target, sort of, when recording is initialized.
Change-Id: I12314bb98cec53d574f4b25984ef803b2c038a96
| -rw-r--r-- | apps/playback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/playback.c b/apps/playback.c index 894c379..870cb08 100644 --- a/apps/playback.c +++ b/apps/playback.c @@ -3006,7 +3006,7 @@ void audio_playback_handler(struct queue_event *ev) audio_start_playback(ev->data, 0); break; -#ifdef AUDIO_HAVE_RECORDING +#ifdef HAVE_RECORDING /* So we can go straight from playback to recording */ case Q_AUDIO_INIT_RECORDING: #endif |