comment on rs03 header check

git-svn-id: https://vgmstream.svn.sourceforge.net/svnroot/vgmstream@60 51a99a44-fe44-0410-b1ba-c3e57ba2b86b
This commit is contained in:
halleyscometsw 2008-03-31 22:10:02 +00:00
parent bb82bd32f8
commit 75b8dd1045

View File

@ -21,7 +21,7 @@ VGMSTREAM * init_vgmstream_rs03(const char * const filename) {
if (!infile) goto fail;
/* check header */
if ((uint32_t)read_32bitBE(0,infile)!=0x52530003)
if ((uint32_t)read_32bitBE(0,infile)!=0x52530003) /* "RS03" */
goto fail;
channel_count = read_32bitBE(4,infile);