Add .s3v loop detection signatures

This commit is contained in:
finict 2022-06-25 23:08:41 +09:00
parent 776c4d8cf5
commit 28bf3ab3e1
No known key found for this signature in database
GPG Key ID: 23C1059C531E320A

View File

@ -19,8 +19,10 @@ VGMSTREAM * init_vgmstream_s3v(STREAMFILE *sf) {
/* No discernible loop_flag so we'll just use signatures.
Might have to update on a per game basis. */
switch (read_32bitBE(0x14, sf)) {
case 0x82FA0000: // SOUND VOLTEX EXCEED GEAR ver5
case 0x1BFD0000: // SOUND VOLTEX EXCEED GEAR ver6
case 0x82FA0000: // SOUND VOLTEX EXCEED GEAR ver5 Theme BGM
case 0x1BFD0000: // SOUND VOLTEX EXCEED GEAR ver6 Theme BGM
case 0x9AFD0000: // SOUND VOLTEX Custom song selection BGM TypeA
case 0x9BFD0000: // SOUND VOLTEX Custom song selection BGM TypeB
loop_flag = 1;
break;