summaryrefslogtreecommitdiff
path: root/apps/playlist_viewer.c
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2004-06-27 01:05:40 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2004-06-27 01:05:40 +0000
commit32e27d93e883384cffb846998119ecdfd9b8fed7 (patch)
treeb5c26ee52a057c0edeeba25fa10056ab30c566b0 /apps/playlist_viewer.c
parent0690ac1966772975879540a4c614b497858ecfb7 (diff)
downloadrockbox-32e27d93e883384cffb846998119ecdfd9b8fed7.tar.gz
rockbox-32e27d93e883384cffb846998119ecdfd9b8fed7.zip
The status bar now keeps track of the mpeg status, instead of having to call status_set_playmode() all the time
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4805 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/playlist_viewer.c')
-rw-r--r--apps/playlist_viewer.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/apps/playlist_viewer.c b/apps/playlist_viewer.c
index 71059aa593..b7e81eeac6 100644
--- a/apps/playlist_viewer.c
+++ b/apps/playlist_viewer.c
@@ -856,7 +856,6 @@ bool playlist_viewer_ex(char* filename)
856#else 856#else
857 splash(HZ, true, str(LANG_END_PLAYLIST_RECORDER)); 857 splash(HZ, true, str(LANG_END_PLAYLIST_RECORDER));
858#endif 858#endif
859 status_set_playmode(STATUS_STOP);
860 goto exit; 859 goto exit;
861 } 860 }
862 861
@@ -988,7 +987,6 @@ bool playlist_viewer_ex(char* filename)
988 /* Stop current track and play new track */ 987 /* Stop current track and play new track */
989 mpeg_stop(); 988 mpeg_stop();
990 playlist_start(tracks[INDEX(viewer.cursor_pos)].index, 0); 989 playlist_start(tracks[INDEX(viewer.cursor_pos)].index, 0);
991 status_set_playmode(STATUS_PLAY);
992 update_playlist(false); 990 update_playlist(false);
993 } 991 }
994 else 992 else
@@ -1001,7 +999,6 @@ bool playlist_viewer_ex(char* filename)
1001 goto exit; 999 goto exit;
1002 1000
1003 playlist_start(tracks[INDEX(viewer.cursor_pos)].index, 0); 1001 playlist_start(tracks[INDEX(viewer.cursor_pos)].index, 0);
1004 status_set_playmode(STATUS_PLAY);
1005 1002
1006 /* Our playlist is now the current list */ 1003 /* Our playlist is now the current list */
1007 if (!initialize(NULL, true)) 1004 if (!initialize(NULL, true))