From b1506e15d4d16939d5c023a19e60fe3852d49912 Mon Sep 17 00:00:00 2001 From: Doxin Date: Thu, 18 Mar 2021 20:21:53 +0100 Subject: [PATCH] Don't draw intro text when hud is disabled --- src/gui/game/GameView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/game/GameView.cpp b/src/gui/game/GameView.cpp index 740182d9b..458a460bf 100644 --- a/src/gui/game/GameView.cpp +++ b/src/gui/game/GameView.cpp @@ -2331,7 +2331,7 @@ void GameView::OnDraw() } //Introduction text - if(introText) + if(introText && showHud) { g->fillrect(0, 0, WINDOWW, WINDOWH, 0, 0, 0, introText>51?102:introText*2); g->drawtext(16, 20, introTextMessage, 255, 255, 255, introText>51?255:introText*5);