From: Kahrl Date: Wed, 1 Feb 2012 00:36:59 +0000 (+0100) Subject: Show the top line too when only chat, but not HUD is shown X-Git-Url: http://81.2.79.47:8989/gitweb/?a=commitdiff_plain;h=78bf92175a81e96545c9bf2f331c344012c71230;p=zefram%2Fminetest%2Fminetest_engine.git Show the top line too when only chat, but not HUD is shown --- 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);