mirror of
https://github.com/vgmstream/vgmstream.git
synced 2025-02-17 19:19:16 +01:00
Fix TXTH loop behavior positive to include 0
This commit is contained in:
parent
39285fe4e5
commit
f2d3a426fe
@ -1202,6 +1202,8 @@ static int parse_keyval(STREAMFILE* sf_, txth_header* txth, const char* key, cha
|
|||||||
else if (txth->loop_behavior == POSITIVE) {
|
else if (txth->loop_behavior == POSITIVE) {
|
||||||
if (txth->loop_flag == 0xFF || txth->loop_flag == 0xFFFF || txth->loop_flag == 0xFFFFFFFF)
|
if (txth->loop_flag == 0xFF || txth->loop_flag == 0xFFFF || txth->loop_flag == 0xFFFFFFFF)
|
||||||
txth->loop_flag = 0;
|
txth->loop_flag = 0;
|
||||||
|
else if (txth->loop_flag == 0)
|
||||||
|
txth->loop_flag = 1;
|
||||||
}
|
}
|
||||||
else if (txth->loop_behavior == INVERTED) {
|
else if (txth->loop_behavior == INVERTED) {
|
||||||
txth->loop_flag = (txth->loop_flag == 0);
|
txth->loop_flag = (txth->loop_flag == 0);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user