summaryrefslogtreecommitdiff
path: root/src/engine/objects/Boos.cpp
diff options
context:
space:
mode:
authorMegaMech <inkstudios1@hotmail.com>2025-05-17 15:33:41 -0600
committerMegaMech <inkstudios1@hotmail.com>2025-05-17 15:33:41 -0600
commita5670c9193a9c56475d93271b980485e17dc6e86 (patch)
tree0db5f6243f4d570df86545aeae2b358b59e8c5a4 /src/engine/objects/Boos.cpp
parent9635600bdcf79b6b7b2b4c703322c84fb575639b (diff)
Tag more itemsframeinterpolation
Diffstat (limited to 'src/engine/objects/Boos.cpp')
-rw-r--r--src/engine/objects/Boos.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/engine/objects/Boos.cpp b/src/engine/objects/Boos.cpp
index 5bdbd41cf..553a34900 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 "src/port/interpolation/FrameInterpolation.h"
extern "C" {
#include "render_objects.h"
@@ -83,6 +84,7 @@ void OBoos::Draw(s32 cameraId) {
for (size_t i = 0; i < _numBoos; i++) {
objectIndex = _indices[i]; //indexObjectList3[i];
+ FrameInterpolation_RecordOpenChild(&gObjectList[objectIndex], TAG_OBJECT((objectIndex << 8) + i));
if (gObjectList[objectIndex].state >= 2) {
temp_s2 = func_8008A364(objectIndex, cameraId, 0x4000U, 0x00000320);
if (CVarGetInteger("gNoCulling", 0) == 1) {
@@ -92,6 +94,7 @@ void OBoos::Draw(s32 cameraId) {
func_800523B8(objectIndex, cameraId, temp_s2);
}
}
+ FrameInterpolation_StopRecord();
}
}