From: RealBadAngel Date: Fri, 27 Jun 2014 18:16:37 +0000 (+0200) Subject: Fix wrong status text rectangle. Fix for #1412 X-Git-Url: http://81.2.79.47:8989/gitweb/?a=commitdiff_plain;h=ed2c8ba9c5d1a80cefe20bd75660536d9a0dd0f5;p=zefram%2Fminetest%2Fminetest_engine.git Fix wrong status text rectangle. Fix for #1412 --- diff --git a/src/game.cpp b/src/game.cpp index 4e2677be..3acc9382 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -3227,7 +3227,7 @@ void the_game(bool &kill, bool random_input, InputHandler *input, core::rect rect( 10, status_y - guitext_status->getTextHeight(), - 10 + guitext_chat->getTextWidth(), + 10 + guitext_status->getTextWidth(), status_y ); guitext_status->setRelativePosition(rect);