summaryrefslogtreecommitdiff
path: root/apps/audio_path.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-06-21 16:53:00 +0000
committerThomas Martitz <kugel@rockbox.org>2010-06-21 16:53:00 +0000
commit35e8b1429a2cdcf6580f6d25890fed9865165d0b (patch)
tree084be19a29bffa879eee8e3cad92d8f3b342a337 /apps/audio_path.c
parent02e04585bdf1fbd00cf84d2000f59ec198440cb3 (diff)
downloadrockbox-35e8b1429a2cdcf6580f6d25890fed9865165d0b.tar.gz
rockbox-35e8b1429a2cdcf6580f6d25890fed9865165d0b.zip
Rockbox as an application: Replace many occurences of #ifdef SIMULATOR with #if (CONFIG_PLATFORM & PLATFORM_HOSTED) (or equivalently).
The simulator defines PLATFORM_HOSTED, as RaaA will do (RaaA will not define SIMULATOR). The new define is to (de-)select code to compile on hosted platforms generally. Should be no functional change to targets or the simulator. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27019 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/audio_path.c')
-rw-r--r--apps/audio_path.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/audio_path.c b/apps/audio_path.c
index 0469d4412a..dab43ebf42 100644
--- a/apps/audio_path.c
+++ b/apps/audio_path.c
@@ -42,7 +42,7 @@
42#endif 42#endif
43#endif 43#endif
44 44
45#ifndef SIMULATOR 45#if (CONFIG_PLATFORM & PLATFORM_NATIVE)
46 46
47#ifdef AUDIO_CPU_BOOST 47#ifdef AUDIO_CPU_BOOST
48static void audio_cpu_boost(bool state) 48static void audio_cpu_boost(bool state)
@@ -115,7 +115,7 @@ int audio_get_spdif_sample_rate(void)
115} /* audio_get_spdif_sample_rate */ 115} /* audio_get_spdif_sample_rate */
116#endif /* HAVE_SPDIF_IN */ 116#endif /* HAVE_SPDIF_IN */
117 117
118#else /* SIMULATOR */ 118#else /* PLATFORM_HOSTED */
119 119
120/** Sim stubs **/ 120/** Sim stubs **/
121 121
@@ -153,4 +153,4 @@ int audio_get_spdif_sample_rate(void)
153} /* audio_get_spdif_sample_rate */ 153} /* audio_get_spdif_sample_rate */
154#endif /* HAVE_SPDIF_IN */ 154#endif /* HAVE_SPDIF_IN */
155 155
156#endif /* !SIMULATOR */ 156#endif /* PLATFORM_NATIVE */