summaryrefslogtreecommitdiff
path: root/apps/plugin.h
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.h
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.h')
-rw-r--r--apps/plugin.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 499e1d657d..0b3a5b566f 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -678,8 +678,8 @@ struct plugin_api {
678#if !defined(SIMULATOR) && (CONFIG_CODEC != SWCODEC) 678#if !defined(SIMULATOR) && (CONFIG_CODEC != SWCODEC)
679 unsigned long (*mpeg_get_last_header)(void); 679 unsigned long (*mpeg_get_last_header)(void);
680#endif 680#endif
681#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F) || \ 681#if ((CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F) || \
682 (CONFIG_CODEC == SWCODEC) 682 (CONFIG_CODEC == SWCODEC)) && defined (HAVE_PITCHSCREEN)
683 void (*sound_set_pitch)(int32_t pitch); 683 void (*sound_set_pitch)(int32_t pitch);
684#endif 684#endif
685 685