1
0
Fork 0
forked from len0rd/rockbox

Clean up some left over junk.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12564 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Adam Boot 2007-03-03 06:18:00 +00:00
parent b9a71b305b
commit 76eeb2f5d2

View file

@ -1914,9 +1914,7 @@ static bool get_spc_metadata(int fd, struct mp3entry* id3)
if (i==8) isbinary = false;
if(isbinary) {
unsigned char * tbuf = buf;
id3->year = tbuf[0] | (tbuf[1]<<8);
id3->year = buf[0] | (buf[1]<<8);
buf += 11;
length = (buf[0] | (buf[1]<<8) | (buf[2]<<16)) * 1000;