git-svn-id: https://vgmstream.svn.sourceforge.net/svnroot/vgmstream@394 51a99a44-fe44-0410-b1ba-c3e57ba2b86b
This commit is contained in:
halleyscometsw 2008-08-04 16:42:22 +00:00
parent c601599f61
commit 54a2309185

View File

@ -1014,15 +1014,15 @@ VGMSTREAM * init_vgmstream_ngc_swd(STREAMFILE *streamFile) {
streamFile->get_name(streamFile,filename,sizeof(filename));
if (strcasecmp("swd",filename_extension(filename))) goto fail;
if (read_dsp_header(&ch0_header, 0x24, streamFile)) goto fail;
if (read_dsp_header(&ch1_header, 0x84, streamFile)) goto fail;
if (read_dsp_header(&ch0_header, 0x08, streamFile)) goto fail;
if (read_dsp_header(&ch1_header, 0x68, streamFile)) goto fail;
/* check header magic */
/*if (read_16bitBE(0x00,streamFile) != 0x5053 && /* PS */
/* (read_8bit(0x02,streamFile) != 0x46)) /* F */
/* goto fail; */
if (read_16bitBE(0x00,streamFile) != 0x5053 && /* PS */
(read_8bit(0x02,streamFile) != 0x46)) /* F */
goto fail;
start_offset = 0xA8;
start_offset = 0xC8;
interleave = 0x8;
/* check initial predictor/scale */
@ -1106,4 +1106,4 @@ fail:
/* clean up anything we may have opened */
if (vgmstream) close_vgmstream(vgmstream);
return NULL;
}
}