From 78bf92175a81e96545c9bf2f331c344012c71230 Mon Sep 17 00:00:00 2001 From: Kahrl Date: Wed, 1 Feb 2012 01:36:59 +0100 Subject: [PATCH] Show the top line too when only chat, but not HUD is shown --- src/game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game.cpp b/src/game.cpp index 027de692..76fdedcf 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -2219,7 +2219,7 @@ void the_game( guitext->setText(narrow_to_wide(temptext).c_str()); guitext->setVisible(true); } - else if(show_hud) + else if(show_hud || show_chat) { guitext->setText(narrow_to_wide(program_name_and_version).c_str()); guitext->setVisible(true);