From 50ecba9040e5d5dac6e52342c780a286fe7a57a7 Mon Sep 17 00:00:00 2001 From: Dragorn421 Date: Sun, 22 Jun 2025 18:08:33 +0200 Subject: [PATCH] fixup --- src/overlays/misc/ovl_kaleido_scope/z_kaleido_scope.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/overlays/misc/ovl_kaleido_scope/z_kaleido_scope.c b/src/overlays/misc/ovl_kaleido_scope/z_kaleido_scope.c index c7064c2be0..d07457d690 100644 --- a/src/overlays/misc/ovl_kaleido_scope/z_kaleido_scope.c +++ b/src/overlays/misc/ovl_kaleido_scope/z_kaleido_scope.c @@ -1652,7 +1652,7 @@ void KaleidoScope_DrawPages(PlayState* play, GraphicsContext* gfxCtx) { /** * Draws the buttons for scrolling left/right, and the info plate. */ -void KaleidoScope_DrawDecor(PlayState* play) { +void KaleidoScope_DrawUIOverlay(PlayState* play) { static void* sToEquipTextTextures[] = LANGUAGE_ARRAY(gPauseToEquipJPNTex, gPauseToEquipENGTex, gPauseToEquipGERTex, gPauseToEquipFRATex); static void* sToDecideTextTextures[] = @@ -3443,7 +3443,7 @@ void KaleidoScope_Draw(PlayState* play) { KaleidoScope_SetView(pauseCtx, 0.0f, 0.0f, 64.0f); if (!IS_PAUSE_STATE_GAMEOVER(pauseCtx)) { - KaleidoScope_DrawDecor(play); + KaleidoScope_DrawUIOverlay(play); } }