Skip to content

Commit

Permalink
Fix incorrect cutscene write types
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettjoecox committed Jan 19, 2024
1 parent 7d6939f commit beb447c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OTRExporter/CutsceneExporter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ void OTRExporter_Cutscene::SaveMM(ZCutscene* cs, BinaryWriter* writer) {
writer->Write((uint32_t)cs->commands[i]->commandID);
writer->Write((uint32_t)cs->commands[i]->entries.size());
for (const auto e : cs->commands[i]->entries) {
writer->Write(CMD_BBH(0, e->base, e->startFrame));
writer->Write(CMD_HH(e->base, e->startFrame));
writer->Write(CMD_HH(e->endFrame, e->endFrame));
}
break;
Expand Down

0 comments on commit beb447c

Please sign in to comment.