From 32b97549fa4cf20ef7a8c1780505a1922daa7e6e Mon Sep 17 00:00:00 2001 From: Sonic Dreamcaster Date: Wed, 20 Nov 2024 20:17:21 -0300 Subject: [PATCH] tag great fox --- src/engine/fox_demo.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/engine/fox_demo.c b/src/engine/fox_demo.c index 356335a3..67cce8ba 100644 --- a/src/engine/fox_demo.c +++ b/src/engine/fox_demo.c @@ -102,7 +102,7 @@ void func_demo_80048CC4(ActorCutscene* this, s32 index) { // @port: Setup team faces this->iwork[14] = index + 2; - + AUDIO_PLAY_SFX(NA_SE_ARWING_ENGINE_FG, this->sfxSource, 4); } } @@ -2916,6 +2916,9 @@ void Cutscene_DrawGreatFox(void) { RCP_SetupDL_29(gFogRed, gFogGreen, gFogBlue, gFogAlpha, gFogNear, 1005); } + // @port: Tag the transform. + FrameInterpolation_RecordOpenChild("Cutscene_DrawGreatFox", 0); + if (gGreatFoxIntact) { gSPDisplayList(gMasterDisp++, aGreatFoxIntactDL); } else { @@ -2983,4 +2986,6 @@ void Cutscene_DrawGreatFox(void) { gSPDisplayList(gMasterDisp++, dList); } } + // @port Pop the transform id. + FrameInterpolation_RecordCloseChild(); }