This commit is contained in:
Dragorn421 2025-06-22 18:08:33 +02:00
parent 13ec4f1359
commit 50ecba9040
No known key found for this signature in database
GPG Key ID: 05949E029F4EF294
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}
}