Fix some str+wav [Taz: Wanted (PC)]

This commit is contained in:
bnnm 2023-09-24 15:19:46 +02:00
parent ab530d40b6
commit 44e6abdcf1

View File

@ -286,7 +286,7 @@ static int parse_header(STREAMFILE* sf_h, STREAMFILE* sf_b, strwav_header* strwa
/* 0x10c: header size */
strwav->codec = IMA;
strwav->interleave = strwav->tracks > 1 ? 0x8000 : 0x10000;
strwav->interleave = strwav->tracks > 1 ? 0x10000 : 0x10000;
;VGM_LOG("STR+WAV: header TAZd (PC)\n");
return 1;
}