diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2010-05-26 04:59:39 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2010-05-26 04:59:39 +0000 |
commit | ab27aa1526983cf1992ce8974c61a3b10ac551dd (patch) | |
tree | afbb50e908711bdcdc877553629132b9c5611848 | |
parent | a8d9a03cfb3c72d36933f3a1867ada00dff0d1d5 (diff) |
Fix r26298 yellow: Somehow missed those warnings. Need playback.h.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26299 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/radio/radio.c | 3 | ||||
-rw-r--r-- | apps/recorder/recording.c | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/apps/radio/radio.c b/apps/radio/radio.c index 51c8982b07..5b09ad2fe8 100644 --- a/apps/radio/radio.c +++ b/apps/radio/radio.c @@ -70,6 +70,9 @@ #include "skin_engine/skin_engine.h" #include "statusbar-skinned.h" #include "buffering.h" +#if CONFIG_CODEC == SWCODEC +#include "playback.h" +#endif #if CONFIG_TUNER diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c index c30098277d..fd1ff75e08 100644 --- a/apps/recorder/recording.c +++ b/apps/recorder/recording.c @@ -34,6 +34,7 @@ #if CONFIG_CODEC == SWCODEC #include "thread.h" #include "enc_config.h" +#include "playback.h" #if defined(HAVE_SPDIF_IN) || defined(HAVE_SPDIF_OUT) #include "spdif.h" #endif |