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
This commit is contained in:
Daniel Stenberg 2002-06-12 07:09:33 +00:00
parent 97c62f813c
commit 7daaa6111f

View file

@ -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;