summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-06-26 23:39:58 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-06-26 23:39:58 +0000
commitaeb1af39f8835b8650bacc7705029cdf607c7c40 (patch)
treec758401223a985784dea5e844842d00e74a4a4e8 /apps
parent69e83490969e1c96d28da98f1d6ddb2705dc0acf (diff)
downloadrockbox-aeb1af39f8835b8650bacc7705029cdf607c7c40.tar.gz
rockbox-aeb1af39f8835b8650bacc7705029cdf607c7c40.zip
Remove play.h dependency
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1213 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/tree.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/tree.c b/apps/tree.c
index 4b16bac68b..94dac2279c 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -28,7 +28,6 @@
28#include "button.h" 28#include "button.h"
29#include "kernel.h" 29#include "kernel.h"
30#include "tree.h" 30#include "tree.h"
31#include "play.h"
32#include "main_menu.h" 31#include "main_menu.h"
33#include "sprintf.h" 32#include "sprintf.h"
34#include "mpeg.h" 33#include "mpeg.h"
@@ -324,11 +323,11 @@ bool dirbrowse(char *root)
324 } 323 }
325 324
326 else { 325 else {
327
328 playing = 1; 326 playing = 1;
329 mpeg_play(buf); 327 mpeg_play(buf);
330 lcd_stop_scroll(); 328 lcd_stop_scroll();
331 wps_show(); 329 wps_show();
330 playing = 0;
332 } 331 }
333 } 332 }
334 restore = true; 333 restore = true;