summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-07-01 21:22:02 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-07-01 21:22:02 +0000
commitc22940a4efc8ea07fcb764e34e06e87f78be696c (patch)
tree1fdee35accb5def65116b5824ff96d859ce8e03b
parentc36919eca3a19086dc1f4ebfa2eedc6e705fcb61 (diff)
downloadrockbox-c22940a4efc8ea07fcb764e34e06e87f78be696c.tar.gz
rockbox-c22940a4efc8ea07fcb764e34e06e87f78be696c.zip
Fixed simulator compiler errors
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1292 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/mpeg.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/firmware/mpeg.c b/firmware/mpeg.c
index 69bc7d2ace..f7b0b6876b 100644
--- a/firmware/mpeg.c
+++ b/firmware/mpeg.c
@@ -798,7 +798,11 @@ void mpeg_prev(void)
798 798
799bool mpeg_is_playing(void) 799bool mpeg_is_playing(void)
800{ 800{
801#ifndef SIMULATOR
801 return playing || play_pending; 802 return playing || play_pending;
803#else
804 return false;
805#endif
802} 806}
803 807
804#ifndef SIMULATOR 808#ifndef SIMULATOR