mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-11-13 18:20:50 +01:00
Fix some Ubi Jade [Peter Jackson's King Kong (Xbox)]
This commit is contained in:
parent
ff6abc48fa
commit
7a21345415
@ -122,7 +122,8 @@ VGMSTREAM * init_vgmstream_ubi_jade(STREAMFILE *streamFile) {
|
||||
switch(codec) {
|
||||
|
||||
case 0x0069: /* Xbox */
|
||||
if (fmt_size != 0x12) goto fail;
|
||||
/* Peter Jackson's King Kong uses 0x14 (other versions don't) */
|
||||
if (fmt_size != 0x12 && fmt_size != 0x14) goto fail;
|
||||
if (block_size != 0x24*channel_count) goto fail;
|
||||
|
||||
vgmstream->coding_type = coding_XBOX_IMA;
|
||||
|
Loading…
Reference in New Issue
Block a user