Disable greying out RTA timer in boss rush (#2973)

This commit is contained in:
aMannus 2023-06-13 01:01:54 +02:00 committed by GitHub
parent daadef5211
commit 971aaeac23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6076,7 +6076,7 @@ void Interface_DrawTotalGameplayTimer(PlayState* play) {
// Draw regular text. Change color based on if the timer is paused, running or the game is completed.
if (gSaveContext.sohStats.gameComplete) {
gDPSetPrimColor(OVERLAY_DISP++, 0, 0, 120, 255, 0, 255);
} else if (gSaveContext.isBossRushPaused) {
} else if (gSaveContext.isBossRushPaused && !gSaveContext.sohStats.rtaTiming) {
gDPSetPrimColor(OVERLAY_DISP++, 0, 0, 150, 150, 150, 255);
} else {
gDPSetPrimColor(OVERLAY_DISP++, 0, 0, 255, 255, 255, 255);