1
0
Fork 0
forked from len0rd/rockbox

Attempt at fixing reds

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1916 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Justin Heiner 2002-08-22 06:25:14 +00:00
parent 5cb571297e
commit 6dd8b83507

View file

@ -221,11 +221,11 @@ int wps_load_custom_config(void)
int i;
int fd;
struct mp3entry* id3 = NULL;
id3 = mpeg_current_track();
char ch = '/';
char* szLast = strrchr(id3->path, ch);
char* szLast;
szLast = strrchr(id3->path, ch);
id3 = mpeg_current_track();
snprintf(buffer, sizeof(buffer), "");
lcd_stop_scroll();
fd = open("/wps.config", O_RDONLY);