mirror of
https://github.com/vgmstream/vgmstream.git
synced 2025-02-16 10:52:32 +01:00
Fix some PDT [Mario Party 4 (GC)]
This commit is contained in:
parent
140a9cd778
commit
a7e29c8be1
@ -17,7 +17,8 @@ VGMSTREAM * init_vgmstream_ngc_pdt(STREAMFILE *streamFile) {
|
||||
|
||||
if (read_16bitBE(0x00,streamFile) != 0x01) /* version? */
|
||||
goto fail;
|
||||
if (read_32bitBE(0x04,streamFile) != 0x04) /* entry size? */
|
||||
if (read_32bitBE(0x04,streamFile) != 0x02 && /* Mario Party 4 (GC) */
|
||||
read_32bitBE(0x04,streamFile) != 0x04) /* Cubic Lode Runner (GC) */
|
||||
goto fail;
|
||||
if (read_32bitBE(0x08,streamFile) != 0x7d00) /* not-sample rate? */
|
||||
goto fail;
|
||||
|
Loading…
x
Reference in New Issue
Block a user