now that we are searching for two classes of tags we can't abort after finding one

git-svn-id: https://vgmstream.svn.sourceforge.net/svnroot/vgmstream@299 51a99a44-fe44-0410-b1ba-c3e57ba2b86b
This commit is contained in:
halleyscometsw 2008-07-09 21:15:05 +00:00
parent 2b44d289cf
commit 04a90fe2e2

View File

@ -154,13 +154,11 @@ VGMSTREAM * init_vgmstream_ogg_vorbis(STREAMFILE *streamFile) {
) {
loop_start=atol(strrchr(comment->user_comments[i],'=')+1);
loop_flag=1;
break;
}
else if (strstr(comment->user_comments[i],"LOOPLENGTH=")==
comment->user_comments[i]) {
loop_length=atol(strrchr(comment->user_comments[i],'=')+1);
loop_length_found=1;
break;
}
}
}