1
0
Fork 0
forked from len0rd/rockbox

check for .m3u extensions case insensitively

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1058 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-06-18 08:23:07 +00:00
parent d38ab69072
commit 9296dfb2c6

View file

@ -164,7 +164,7 @@ static int showdir(char *path, int start)
#ifdef HAVE_LCD_BITMAP #ifdef HAVE_LCD_BITMAP
if ( dircacheptr[i]->file ) { if ( dircacheptr[i]->file ) {
if(!strcmp(&dircacheptr[i]->name[len-4], ".m3u")) if(!strcasecmp(&dircacheptr[i]->name[len-4], ".m3u"))
icon_type = Playlist; icon_type = Playlist;
else else
icon_type=File; icon_type=File;
@ -295,7 +295,7 @@ bool dirbrowse(char *root)
int len=strlen(dircacheptr[dircursor+start]->name); int len=strlen(dircacheptr[dircursor+start]->name);
lcd_stop_scroll(); lcd_stop_scroll();
if((len > 4) && if((len > 4) &&
!strcmp(&dircacheptr[dircursor+start]->name[len-4], !strcasecmp(&dircacheptr[dircursor+start]->name[len-4],
".m3u")) ".m3u"))
{ {
playing = 2; playing = 2;