summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2007-06-09 00:35:07 +0000
committerMichael Sevakis <jethead71@rockbox.org>2007-06-09 00:35:07 +0000
commitbcac36468f21ba316147ef9b436f999d988bfb87 (patch)
tree592a28fba533fd95c1f7a24bddb5566ccf102e34 /apps/plugins
parent2d48d0ffa6baddd19e6ff077f25068f90af7be3d (diff)
downloadrockbox-bcac36468f21ba316147ef9b436f999d988bfb87.zip
rockbox-bcac36468f21ba316147ef9b436f999d988bfb87.tar.gz
rockbox-bcac36468f21ba316147ef9b436f999d988bfb87.tar.bz2
rockbox-bcac36468f21ba316147ef9b436f999d988bfb87.tar.xz
Fix small preprocessor goofup.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13600 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/test_sampr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/test_sampr.c b/apps/plugins/test_sampr.c
index e1511e3..d1c9c2b 100644
--- a/apps/plugins/test_sampr.c
+++ b/apps/plugins/test_sampr.c
@@ -199,7 +199,7 @@ void play_waveform(void)
rb->audio_stop();
rb->sound_set(SOUND_VOLUME, rb->sound_default(SOUND_VOLUME));
-#ifdef INPUT_SRC_CAPS != 0
+#if INPUT_SRC_CAPS != 0
/* Select playback */
rb->audio_set_input_source(AUDIO_SRC_PLAYBACK, SRCF_PLAYBACK);
#endif
@@ -210,7 +210,7 @@ void play_waveform(void)
rb->pcm_set_frequency(rb->hw_freq_sampr[freq]);
-#ifdef INPUT_SRC_CAPS != 0
+#if INPUT_SRC_CAPS != 0
/* Recordable targets can play back from other sources */
rb->audio_set_output_source(AUDIO_SRC_PLAYBACK);
#endif