summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorFrank Gevaerts <frank@gevaerts.be>2010-09-17 20:28:47 +0000
committerFrank Gevaerts <frank@gevaerts.be>2010-09-17 20:28:47 +0000
commitf366090562dcdc1c4c0efbd87476ef6c068b7db5 (patch)
tree17bf868c61d677ce7969bcc5312e5a69abeda428 /apps/plugin.c
parentbd43690170ea9441226557bf58907654338b6029 (diff)
downloadrockbox-f366090562dcdc1c4c0efbd87476ef6c068b7db5.tar.gz
rockbox-f366090562dcdc1c4c0efbd87476ef6c068b7db5.zip
Make disabling HAVE_PITCHSCREEN actually work without breaking the build
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28102 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 9b490d0fa9..193d02e034 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -544,8 +544,8 @@ static const struct plugin_api rockbox_api = {
544#if !defined(SIMULATOR) && (CONFIG_CODEC != SWCODEC) 544#if !defined(SIMULATOR) && (CONFIG_CODEC != SWCODEC)
545 mpeg_get_last_header, 545 mpeg_get_last_header,
546#endif 546#endif
547#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F) || \ 547#if ((CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F) || \
548 (CONFIG_CODEC == SWCODEC) 548 (CONFIG_CODEC == SWCODEC)) && defined (HAVE_PITCHSCREEN)
549 sound_set_pitch, 549 sound_set_pitch,
550#endif 550#endif
551 551