This commit is contained in:
Chris Moeller 2012-10-02 02:59:14 -07:00
commit 97f92c128d
3 changed files with 5 additions and 1 deletions

View File

@ -1 +1 @@
#define VERSION "r1000"
#define VERSION "r995-1"

View File

@ -310,6 +310,8 @@ VGMSTREAM * init_vgmstream_fsb4(STREAMFILE *streamFile) {
vgmstream->loop_end_sample = read_32bitLE(0x50,streamFile);
}
break;
/* de Blob 2*/
case 0x00000886:
/* WII (de Blob, Night at the Museum) */
case 0x40000802:
case 0x40000882:

View File

@ -339,6 +339,8 @@ VGMSTREAM * init_vgmstream_riff(STREAMFILE *streamFile) {
sample_count = (data_size / fmt.block_size) * (fmt.block_size - 4 * fmt.channel_count) * 2 / fmt.channel_count +
((data_size % fmt.block_size) ? (data_size % fmt.block_size - 4 * fmt.channel_count) * 2 / fmt.channel_count : 0);
break;
case coding_NGC_DSP:
break;
default:
goto fail;
}