summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Estelami <NEstelami@users.noreply.github.com>2024-01-08 22:50:21 -0500
committerNicholas Estelami <NEstelami@users.noreply.github.com>2024-01-08 22:50:21 -0500
commit5238d604ecb8d661008c1e1be64889f13cb054ec (patch)
tree1ec431f323abcb727287df6b489827593cc528bf
parent6b1e8a8fa249b74796b9bc54ccc8cf81aa124ffb (diff)
Fix typo
-rw-r--r--ZAPD/OtherStructs/CutsceneMM_Commands.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ZAPD/OtherStructs/CutsceneMM_Commands.cpp b/ZAPD/OtherStructs/CutsceneMM_Commands.cpp
index 5c768d3..004213d 100644
--- a/ZAPD/OtherStructs/CutsceneMM_Commands.cpp
+++ b/ZAPD/OtherStructs/CutsceneMM_Commands.cpp
@@ -272,7 +272,7 @@ std::string CutsceneMMCommand_Spline::GetCommandMacro() const
size_t CutsceneMMCommand_Spline::GetCommandSize() const
{
- // 8 Bytes once for the spline command, 8 Bytes per spline the header, two grops of size 12, 1 group of size 8, 4 bytes for the footer.
+ // 8 Bytes once for the spline command, 8 Bytes per spline the header, two groups of size 12, 1 group of size 8, 4 bytes for the footer.
return 8 + (8 * numHeaders) + ((totalCommands * 2) * 0xC) + (totalCommands * 8) + 4;
}