diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-06-26 23:39:58 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-06-26 23:39:58 +0000 |
| commit | aeb1af39f8835b8650bacc7705029cdf607c7c40 (patch) | |
| tree | c758401223a985784dea5e844842d00e74a4a4e8 | |
| parent | 69e83490969e1c96d28da98f1d6ddb2705dc0acf (diff) | |
| download | rockbox-aeb1af39f8835b8650bacc7705029cdf607c7c40.zip rockbox-aeb1af39f8835b8650bacc7705029cdf607c7c40.tar.gz rockbox-aeb1af39f8835b8650bacc7705029cdf607c7c40.tar.bz2 rockbox-aeb1af39f8835b8650bacc7705029cdf607c7c40.tar.xz | |
Remove play.h dependency
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1213 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/tree.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/tree.c b/apps/tree.c index 4b16bac..94dac22 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -28,7 +28,6 @@ #include "button.h" #include "kernel.h" #include "tree.h" -#include "play.h" #include "main_menu.h" #include "sprintf.h" #include "mpeg.h" @@ -324,11 +323,11 @@ bool dirbrowse(char *root) } else { - playing = 1; mpeg_play(buf); lcd_stop_scroll(); wps_show(); + playing = 0; } } restore = true; |