summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Estelami <NEstelami@users.noreply.github.com>2023-04-30 19:56:18 -0400
committerGitHub <noreply@github.com>2023-04-30 19:56:18 -0400
commita71e171748aef62e6f07b9e246e875f5c263eff0 (patch)
tree5eb6e69e45f6179a10aece389e803488fa5a9c10
parent52e51863e9d2d3f312389026c2b9aa1c56474fa1 (diff)
Fixed incorrect cutscene cmd (#282)
-rw-r--r--ZAPD/ZCutscene.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ZAPD/ZCutscene.cpp b/ZAPD/ZCutscene.cpp
index a3bfe0e..c2e6c2b 100644
--- a/ZAPD/ZCutscene.cpp
+++ b/ZAPD/ZCutscene.cpp
@@ -231,6 +231,7 @@ CutsceneCommand* ZCutscene::GetCommandOoT(uint32_t id, offset_t currentPtr) cons
case 142:
case 62: // CutsceneCommands::SetActorAction9
case 143: // CutsceneCommands::SetActorAction10
+ case 74:
return new CutsceneCommand_ActorAction(rawData, currentPtr);
case 0x0B:
@@ -249,7 +250,6 @@ CutsceneCommand* ZCutscene::GetCommandOoT(uint32_t id, offset_t currentPtr) cons
case 0x16:
case 0x70:
case 0x71:
- case 0x4A:
return new CutsceneCommand_GenericCmd(rawData, currentPtr, cmdID);
}