diff options
| author | Sonic Dreamcaster <alejandro.asenjo88@gmail.com> | 2025-05-17 13:11:28 -0300 |
|---|---|---|
| committer | Sonic Dreamcaster <alejandro.asenjo88@gmail.com> | 2025-05-17 13:11:28 -0300 |
| commit | af63558bac2647729af472f318958828289e8b17 (patch) | |
| tree | df031b3d19b5d0f87486552e4882cf8578852a1c | |
| parent | c7f67eae75d03c8e05fc31e29a0a982ea82d77d2 (diff) | |
doesn't compile on win
| -rw-r--r-- | src/engine/objects/GrandPrixBalloons.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/engine/objects/GrandPrixBalloons.cpp b/src/engine/objects/GrandPrixBalloons.cpp index e3d99f934..eb6b311de 100644 --- a/src/engine/objects/GrandPrixBalloons.cpp +++ b/src/engine/objects/GrandPrixBalloons.cpp @@ -12,7 +12,8 @@ extern "C" { #include "math_util.h" #include "math_util_2.h" #include "menus.h" -#include "port/interpolation/FrameInterpolation.h" +// Doesn't seem to compile on Windows +// #include "port/interpolation/FrameInterpolation.h" } size_t OGrandPrixBalloons::_count = 0; @@ -107,7 +108,7 @@ void OGrandPrixBalloons::func_80053D74(s32 objectIndex, UNUSED s32 arg1, s32 ver Vtx* vtx = (Vtx*) LOAD_ASSET_RAW(common_vtx_hedgehog); // @port: Tag the transform. - FrameInterpolation_RecordOpenChild("Balloon", TAG_ITEM_ADDR(object)); //Not working properly just yet + // FrameInterpolation_RecordOpenChild("Balloon", TAG_ITEM_ADDR(object)); //Not working properly just yet if (gMatrixHudCount <= MTX_HUD_POOL_SIZE_MAX) { object = &gObjectList[objectIndex]; @@ -121,7 +122,7 @@ void OGrandPrixBalloons::func_80053D74(s32 objectIndex, UNUSED s32 arg1, s32 ver } // @port Pop the transform id. - FrameInterpolation_RecordCloseChild(); + // FrameInterpolation_RecordCloseChild(); } void OGrandPrixBalloons::func_80074924(s32 objectIndex) { |
