summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorMichiel Van Der Kolk <not.valid@email.address>2005-03-21 11:54:59 +0000
committerMichiel Van Der Kolk <not.valid@email.address>2005-03-21 11:54:59 +0000
commit9e173d18ef82bcf01630588d230b27c6742f9b43 (patch)
tree2e22d2dd438b65e4e8e1e3148a5695e8e0407f7a /apps/plugin.c
parent9bc622603c600f31bbc4fdf4ec43cbcc37f42a75 (diff)
downloadrockbox-9e173d18ef82bcf01630588d230b27c6742f9b43.tar.gz
rockbox-9e173d18ef82bcf01630588d230b27c6742f9b43.zip
Temporary fix for the broken sim build.. till someone implements sound
on them... git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6221 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 84d030e1de..b4239bb8d9 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -44,7 +44,7 @@
44#include "mp3data.h" 44#include "mp3data.h"
45#include "powermgmt.h" 45#include "powermgmt.h"
46#include "system.h" 46#include "system.h"
47#if (CONFIG_HWCODEC == MASNONE) 47#if (CONFIG_HWCODEC == MASNONE) && !defined(SIMULATOR)
48#include "pcm_playback.h" 48#include "pcm_playback.h"
49#endif 49#endif
50 50
@@ -271,7 +271,7 @@ static const struct plugin_api rockbox_api = {
271#if CONFIG_KEYPAD == IRIVER_H100_PAD 271#if CONFIG_KEYPAD == IRIVER_H100_PAD
272 button_hold, 272 button_hold,
273#endif 273#endif
274#if (CONFIG_HWCODEC == MASNONE) 274#if (CONFIG_HWCODEC == MASNONE) && !defined(SIMULATOR)
275 pcm_play_data, 275 pcm_play_data,
276 pcm_play_stop, 276 pcm_play_stop,
277 pcm_is_playing, 277 pcm_is_playing,