diff options
| author | MegaMech <7255464+MegaMech@users.noreply.github.com> | 2025-05-20 17:41:37 -0600 |
|---|---|---|
| committer | MegaMech <7255464+MegaMech@users.noreply.github.com> | 2025-05-20 17:41:37 -0600 |
| commit | c10361ea799c5e4ad3c00ebfe0c4d5aba2670dc1 (patch) | |
| tree | 4f62f97dccc9a2cf5a8a1c0ec2d8bcd3ad1c8f78 /src/engine/objects/Boos.cpp | |
| parent | a364421b093fde425e4d8b11a8629b39ddb68288 (diff) | |
| parent | 02d6c6fc99301ec282189285c44101a78804a063 (diff) | |
Merge branch 'transformfuncsforint' of https://github.com/HarbourMasters/SpaghettiKart into transformfuncsforint
Diffstat (limited to 'src/engine/objects/Boos.cpp')
| -rw-r--r-- | src/engine/objects/Boos.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/engine/objects/Boos.cpp b/src/engine/objects/Boos.cpp index 5bdbd41cf..69bb95072 100644 --- a/src/engine/objects/Boos.cpp +++ b/src/engine/objects/Boos.cpp @@ -1,6 +1,7 @@ #include "Boos.h" #include "World.h" #include "CoreMath.h" +#include "port/interpolation/FrameInterpolation.h" extern "C" { #include "render_objects.h" @@ -82,6 +83,8 @@ void OBoos::Draw(s32 cameraId) { s32 objectIndex; for (size_t i = 0; i < _numBoos; i++) { + // @port: Tag the transform. + FrameInterpolation_RecordOpenChild("Boo", i); objectIndex = _indices[i]; //indexObjectList3[i]; if (gObjectList[objectIndex].state >= 2) { temp_s2 = func_8008A364(objectIndex, cameraId, 0x4000U, 0x00000320); @@ -92,6 +95,8 @@ void OBoos::Draw(s32 cameraId) { func_800523B8(objectIndex, cameraId, temp_s2); } } + // @port Pop the transform id. + FrameInterpolation_RecordCloseChild(); } } |
