From a400d247773babf3931d9c457cc4a87aafd59d14 Mon Sep 17 00:00:00 2001 From: James R Date: Fri, 6 Jan 2023 01:59:08 -0800 Subject: [PATCH] Don't draw song credit outside of GS_LEVEL --- src/hu_stuff.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/hu_stuff.c b/src/hu_stuff.c index ed0ab076f..f25f64a3e 100644 --- a/src/hu_stuff.c +++ b/src/hu_stuff.c @@ -2126,6 +2126,10 @@ void HU_Drawer(void) V_DrawCenteredString(BASEVIDWIDTH/2, 180, V_YELLOWMAP | V_ALLOWLOWERCASE, resynch_text); } + // draw song credits + if (cv_songcredits.value && !( hu_showscores && (netgame || multiplayer) )) + HU_DrawSongCredits(); + drawontop: // Opened chat if (chat_on) @@ -2138,10 +2142,6 @@ drawontop: if (cechotimer) HU_DrawCEcho(); - - // draw song credits - if (cv_songcredits.value && !( hu_showscores && (netgame || multiplayer) )) - HU_DrawSongCredits(); } //======================================================================