mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix regression: mouse wheel couldn't scroll from last hotbar item to first
This commit is contained in:
parent
43bf4324d5
commit
817e3a6c64
1 changed files with 1 additions and 1 deletions
|
@ -2402,7 +2402,7 @@ void MinetestApp::processItemSelection(u16 *new_playeritem)
|
|||
player->hud_hotbar_itemcount - 1);
|
||||
|
||||
if (wheel < 0)
|
||||
*new_playeritem = *new_playeritem < max_item ? *new_playeritem + 1 : max_item;
|
||||
*new_playeritem = *new_playeritem < max_item ? *new_playeritem + 1 : 0;
|
||||
else if (wheel > 0)
|
||||
*new_playeritem = *new_playeritem > 0 ? *new_playeritem - 1 : max_item;
|
||||
// else wheel == 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue