diff options
author | Craig Robbins <kde.psych@gmail.com> | 2014-10-16 17:47:54 +1000 |
---|---|---|
committer | RealBadAngel <maciej.kasatkin@o2.pl> | 2014-10-18 17:30:17 +0200 |
commit | fe8ef1be59399a327d9df50a0ab823bb2731de79 (patch) | |
tree | b5cd40c96813eb0ac5395a20300a8ea1344f999b | |
parent | 0066bd77d25793b76fdaa9a62755cca934f0121d (diff) | |
download | minetest-fe8ef1be59399a327d9df50a0ab823bb2731de79.tar.gz minetest-fe8ef1be59399a327d9df50a0ab823bb2731de79.tar.bz2 minetest-fe8ef1be59399a327d9df50a0ab823bb2731de79.zip |
Move buttons upwards to accommodate for new configure keys button in the
pause menu
-rw-r--r-- | src/game.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game.cpp b/src/game.cpp index 774d8f03e..2f228b0ed 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -1036,7 +1036,8 @@ static void show_pause_menu(GUIFormSpecMenu** cur_formspec, "- T: chat\n" )); #endif - float ypos = singleplayermode ? 1.0 : 0.5; + + float ypos = singleplayermode ? 0.5 : 0.1; std::ostringstream os; os << FORMSPEC_VERSION_STRING << SIZE_TAG |