diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-05-27 07:00:03 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-05-27 07:00:03 +0000 |
| commit | c012eb6cc23467cb461375e8658ff1530c293ded (patch) | |
| tree | de3c0792544e08dc3a55975c0c3f9b9ea450a8fe | |
| parent | cd676e1d0fdd20099afce8917eeca5ce67b2b953 (diff) | |
| download | rockbox-c012eb6cc23467cb461375e8658ff1530c293ded.zip rockbox-c012eb6cc23467cb461375e8658ff1530c293ded.tar.gz rockbox-c012eb6cc23467cb461375e8658ff1530c293ded.tar.bz2 rockbox-c012eb6cc23467cb461375e8658ff1530c293ded.tar.xz | |
mpeg_play() is present if not simulating or if especially defined
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@720 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/play.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/play.c b/apps/play.c index 2348f63..b0af226 100644 --- a/apps/play.c +++ b/apps/play.c @@ -44,7 +44,9 @@ void playtune(char *dir, char *file) bool good=1; snprintf(buffer, sizeof(buffer), "%s/%s", dir, file); +#if !defined(SIMULATOR) || defined(MPEGPLAY) mpeg_play(buffer); +#endif if(mp3info(&mp3, buffer)) { DEBUGF("id3 failure!"); |