mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix initial moving of mouse above the "exit to menu" button in singleplayer mode
This commit is contained in:
parent
5957fed9a7
commit
4aa0f040fb
1 changed files with 4 additions and 1 deletions
|
@ -1362,7 +1362,10 @@ void the_game(
|
||||||
&g_menumgr, simple_singleplayer_mode))->drop();
|
&g_menumgr, simple_singleplayer_mode))->drop();
|
||||||
|
|
||||||
// Move mouse cursor on top of the disconnect button
|
// Move mouse cursor on top of the disconnect button
|
||||||
input->setMousePos(displaycenter.X, displaycenter.Y+25);
|
if(simple_singleplayer_mode)
|
||||||
|
input->setMousePos(displaycenter.X, displaycenter.Y+0);
|
||||||
|
else
|
||||||
|
input->setMousePos(displaycenter.X, displaycenter.Y+25);
|
||||||
}
|
}
|
||||||
else if(input->wasKeyDown(getKeySetting("keymap_chat")))
|
else if(input->wasKeyDown(getKeySetting("keymap_chat")))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue