Skip to content

Commit 56908da

Browse files
committed
RSAR: Add unknowns for LPF_CUTOFF / MAINSEND
As seen in Bomberman.
1 parent 77c1487 commit 56908da

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/main/formats/RSARSeq.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,9 +269,14 @@ bool RSARTrack::ReadEvent() {
269269
curOffset += 2;
270270
AddUnknown(beginOffset, curOffset - beginOffset, L"Sweep Pitch");
271271
break;
272+
case MML_LPF_CUTOFF:
273+
curOffset++;
274+
AddUnknown(beginOffset, curOffset - beginOffset, L"LPF Cutoff");
275+
break;
272276
case MML_FXSEND_A:
273277
case MML_FXSEND_B:
274278
case MML_FXSEND_C:
279+
case MML_MAINSEND:
275280
curOffset++;
276281
AddUnknown(beginOffset, curOffset - beginOffset, L"FXSEND");
277282
break;

0 commit comments

Comments
 (0)