forked from len0rd/rockbox
Fixed simulator compiler errors
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1292 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
c36919eca3
commit
c22940a4ef
1 changed files with 4 additions and 0 deletions
|
@ -798,7 +798,11 @@ void mpeg_prev(void)
|
||||||
|
|
||||||
bool mpeg_is_playing(void)
|
bool mpeg_is_playing(void)
|
||||||
{
|
{
|
||||||
|
#ifndef SIMULATOR
|
||||||
return playing || play_pending;
|
return playing || play_pending;
|
||||||
|
#else
|
||||||
|
return false;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef SIMULATOR
|
#ifndef SIMULATOR
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue