mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 21:22:39 -05:00
metadata: sid: allow RSIDs as well
cRSID also allows to play RSIDs (hence the name of the library). So, allow them as well. Change-Id: Iae8f0ac083ed714771767a4c23f5a09bad637208
This commit is contained in:
parent
70ce734ece
commit
88f4f1c8d0
1 changed files with 1 additions and 1 deletions
|
|
@ -45,7 +45,7 @@ bool get_sid_metadata(int fd, struct mp3entry* id3)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((memcmp(buf, "PSID", 4) != 0))
|
if (memcmp(buf, "PSID", 4) != 0 && memcmp(buf, "RSID", 4) != 0)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue