From 7daaa6111f2acbb9433b6245683fb06e87e5401d Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 12 Jun 2002 07:09:33 +0000 Subject: uh, make sure we start with a slash when playing songs git-svn-id: svn://svn.rockbox.org/rockbox/trunk@967 a1c6a512-1295-4272-9138-f99709370657 --- apps/playlist.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'apps/playlist.c') diff --git a/apps/playlist.c b/apps/playlist.c index c282dc1cfd..85d72dc57f 100644 --- a/apps/playlist.c +++ b/apps/playlist.c @@ -60,8 +60,10 @@ char* playlist_next(int type) if('/' == now_playing[1]) return &now_playing[1]; - else + else { + now_playing[0]='/'; return now_playing; + } } else return NULL; -- cgit v1.2.3