Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix wrong status text rectangle. Fix for #1412
  • Loading branch information
RealBadAngel committed Jun 27, 2014
1 parent 13517fb commit ed2c8ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game.cpp
Expand Up @@ -3227,7 +3227,7 @@ void the_game(bool &kill, bool random_input, InputHandler *input,
core::rect<s32> rect(
10,
status_y - guitext_status->getTextHeight(),
10 + guitext_chat->getTextWidth(),
10 + guitext_status->getTextWidth(),
status_y
);
guitext_status->setRelativePosition(rect);
Expand Down

0 comments on commit ed2c8ba

Please sign in to comment.