mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-11-12 09:40:51 +01:00
Fix some .mtaf looping when shouldn't
This commit is contained in:
parent
80ae4f2ed3
commit
d9c3720f73
@ -32,7 +32,7 @@ VGMSTREAM * init_vgmstream_mtaf(STREAMFILE *streamFile) {
|
||||
|
||||
loop_start = read_32bitLE(0x58, streamFile);
|
||||
loop_end = read_32bitLE(0x5c, streamFile);
|
||||
loop_flag = (loop_start != loop_end);
|
||||
loop_flag = read_32bitLE(0x70, streamFile) & 1;
|
||||
|
||||
/* check loop points vs frame counts */
|
||||
if (loop_start/0x100 != read_32bitLE(0x64, streamFile) ||
|
||||
|
Loading…
Reference in New Issue
Block a user