diff options
author | Frank Gevaerts <frank@gevaerts.be> | 2010-09-17 20:28:47 +0000 |
---|---|---|
committer | Frank Gevaerts <frank@gevaerts.be> | 2010-09-17 20:28:47 +0000 |
commit | f366090562dcdc1c4c0efbd87476ef6c068b7db5 (patch) | |
tree | 17bf868c61d677ce7969bcc5312e5a69abeda428 /apps/main.c | |
parent | bd43690170ea9441226557bf58907654338b6029 (diff) | |
download | rockbox-f366090562dcdc1c4c0efbd87476ef6c068b7db5.tar.gz rockbox-f366090562dcdc1c4c0efbd87476ef6c068b7db5.tar.bz2 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/main.c')
-rw-r--r-- | apps/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/main.c b/apps/main.c index b86b083e44..949790b05f 100644 --- a/apps/main.c +++ b/apps/main.c @@ -399,7 +399,7 @@ static void init(void) #endif /* CONFIG_CODEC != SWCODEC */ scrobbler_init(); -#if CONFIG_CODEC == SWCODEC +#if CONFIG_CODEC == SWCODEC && defined (HAVE_PITCHSCREEN) tdspeed_init(); #endif /* CONFIG_CODEC == SWCODEC */ @@ -663,7 +663,7 @@ static void init(void) tree_mem_init(); filetype_init(); scrobbler_init(); -#if CONFIG_CODEC == SWCODEC +#if CONFIG_CODEC == SWCODEC && defined (HAVE_PITCHSCREEN) tdspeed_init(); #endif /* CONFIG_CODEC == SWCODEC */ theme_init_buffer(); |