summaryrefslogtreecommitdiffstats
path: root/apps/wps-display.c
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-04-04 12:06:29 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-04-04 12:06:29 +0000
commit8a237a829e0f63b61536f315209a6d0ea1477e31 (patch)
tree1fe54329fe776aa7bc982a37203cb61c13244a48 /apps/wps-display.c
parentec4e9b8d600c53add3c8bf6eb7fe1975dba141a7 (diff)
downloadrockbox-8a237a829e0f63b61536f315209a6d0ea1477e31.tar.gz
rockbox-8a237a829e0f63b61536f315209a6d0ea1477e31.zip
More audio code restructuring, mostly renaming functions so far
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6246 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/wps-display.c')
-rw-r--r--apps/wps-display.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/wps-display.c b/apps/wps-display.c
index 9c8619fa66..1ed70541dc 100644
--- a/apps/wps-display.c
+++ b/apps/wps-display.c
@@ -29,7 +29,7 @@
#include "lcd.h"
#include "hwcompat.h"
#include "font.h"
-#include "mpeg.h"
+#include "audio.h"
#include "id3.h"
#include "settings.h"
#include "playlist.h"
@@ -1011,7 +1011,7 @@ bool wps_display(struct mp3entry* id3,
{
lcd_clear_display();
- if (!id3 && !(mpeg_status() & MPEG_STATUS_PLAY))
+ if (!id3 && !(audio_status() & AUDIO_STATUS_PLAY))
{
#ifdef HAVE_LCD_CHARCELLS
lcd_puts(0, 0, str(LANG_END_PLAYLIST_PLAYER));