summaryrefslogtreecommitdiff
path: root/apps/gui
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2007-04-18 13:03:01 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2007-04-18 13:03:01 +0000
commit36a2e3087295385d15797f83120222ff71dc32bf (patch)
tree99ef6148d8b020396734f9c3dcfd520d730045f3 /apps/gui
parentf44f961812c059b69df19ac5bd828986ba10513f (diff)
downloadrockbox-36a2e3087295385d15797f83120222ff71dc32bf.tar.gz
rockbox-36a2e3087295385d15797f83120222ff71dc32bf.zip
Move the inbuilt filetype info into filetypes.c and rename the defines.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13201 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui')
-rw-r--r--apps/gui/gwps.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/gui/gwps.c b/apps/gui/gwps.c
index 6bf584fc6a..0819d122f5 100644
--- a/apps/gui/gwps.c
+++ b/apps/gui/gwps.c
@@ -28,7 +28,7 @@
28#include "backlight.h" 28#include "backlight.h"
29#include "action.h" 29#include "action.h"
30#include "kernel.h" 30#include "kernel.h"
31#include "tree.h" 31#include "filetypes.h"
32#include "debug.h" 32#include "debug.h"
33#include "sprintf.h" 33#include "sprintf.h"
34#include "settings.h" 34#include "settings.h"
@@ -236,7 +236,7 @@ long gui_wps_show(void)
236 show_main_backdrop(); 236 show_main_backdrop();
237#endif 237#endif
238 action_signalscreenchange(); 238 action_signalscreenchange();
239 if (onplay(wps_state.id3->path, TREE_ATTR_MPA, CONTEXT_WPS) 239 if (onplay(wps_state.id3->path, FILE_ATTR_AUDIO, CONTEXT_WPS)
240 == ONPLAY_MAINMENU) 240 == ONPLAY_MAINMENU)
241 return GO_TO_ROOT; 241 return GO_TO_ROOT;
242#if LCD_DEPTH > 1 242#if LCD_DEPTH > 1