mirror of
https://github.com/vgmstream/vgmstream.git
synced 2025-02-16 10:52:32 +01:00
fix loop_flag offset
This commit is contained in:
parent
69ab85d106
commit
62fd5243ae
@ -19,7 +19,7 @@ VGMSTREAM * init_vgmstream_bwav(STREAMFILE *streamFile) {
|
|||||||
|
|
||||||
channel_count = read_16bitLE(0x0E, streamFile);
|
channel_count = read_16bitLE(0x0E, streamFile);
|
||||||
start_offset = read_32bitLE(0x40, streamFile);
|
start_offset = read_32bitLE(0x40, streamFile);
|
||||||
loop_flag = read_32bitLE(0x50, streamFile);
|
loop_flag = read_32bitLE(0x4C, streamFile);
|
||||||
|
|
||||||
/* build the VGMSTREAM */
|
/* build the VGMSTREAM */
|
||||||
vgmstream = allocate_vgmstream(channel_count, loop_flag);
|
vgmstream = allocate_vgmstream(channel_count, loop_flag);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user