summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEblo <7004497+Eblo@users.noreply.github.com>2025-07-05 12:54:47 -0400
committerEblo <7004497+Eblo@users.noreply.github.com>2025-09-16 21:57:11 -0400
commitec47ad847bf1331d732e1801ce2bcd6d7b24e2b1 (patch)
tree53fd45521fdb238e6a2dda10cefe2333019f7a3e
parent9ebb11f9f2c2ee96a317000960d4d9541ce0dd69 (diff)
Replace erroneous CsCmdStartSeq with CsCmdStopSeq (#1812)
-rw-r--r--mm/src/code/z_demo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/src/code/z_demo.c b/mm/src/code/z_demo.c
index a1ca11b03..835f059ad 100644
--- a/mm/src/code/z_demo.c
+++ b/mm/src/code/z_demo.c
@@ -1275,7 +1275,7 @@ void Cutscene_ProcessScript(PlayState* play, CutsceneContext* csCtx, u8* script)
for (j = 0; j < cmdEntries; j++) {
CutsceneCmd_StopSequence(play, csCtx, (CsCmdStopSeq*)script);
- script += sizeof(CsCmdStartSeq);
+ script += sizeof(CsCmdStopSeq);
}
break;