1
0
Fork 0
forked from len0rd/rockbox

Make the ID3 info screen treat empty tag strings as 'no value', like the WPS does.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13305 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Magnus Holmgren 2007-05-02 17:01:02 +00:00
parent 05a158ecf3
commit 2a20bfe153

View file

@ -1228,9 +1228,7 @@ static char * id3_get_info(int selected_item, void* data, char *buffer)
info=id3->path; info=id3->path;
break; break;
} }
if(info==NULL) return info && *info ? info : (char*) str(LANG_ID3_NO_INFO);
return(str(LANG_ID3_NO_INFO));
return(info);
} }
} }