diff options
| author | Eblo <7004497+Eblo@users.noreply.github.com> | 2025-07-05 12:54:47 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-05 12:54:47 -0400 |
| commit | a6411b4ba2deb09e6cf68db2e59cdba356c7ec63 (patch) | |
| tree | 7ba7d0c7426ab7b39f6ca3ad404f01ac7f464280 /src/code | |
| parent | d31ceacfdf468456d1052ca8af981f06040e0ac4 (diff) | |
Replace erroneous CsCmdStartSeq with CsCmdStopSeq (#1812)
Diffstat (limited to 'src/code')
| -rw-r--r-- | src/code/z_demo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/z_demo.c b/src/code/z_demo.c index 95c6cdcaf..9acb089d7 100644 --- a/src/code/z_demo.c +++ b/src/code/z_demo.c @@ -1252,7 +1252,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; |
