aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Screen.cpp
diff options
context:
space:
mode:
authorretucio <165311393+retuci0@users.noreply.github.com>2026-03-16 00:11:55 +0100
committerGitHub <noreply@github.com>2026-03-15 18:11:55 -0500
commit9fde19eca074bd1e7e58f44294dceb1de8ea486e (patch)
tree2a8be34be254b5a85155508264b9695db199c1cb /Minecraft.Client/Screen.cpp
parente9f5b4b6f0bff50691acae160434c69c4a89231e (diff)
organized keybinds a lil bit (#1279)
Diffstat (limited to 'Minecraft.Client/Screen.cpp')
-rw-r--r--Minecraft.Client/Screen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Minecraft.Client/Screen.cpp b/Minecraft.Client/Screen.cpp
index 041f8175..7966c5c9 100644
--- a/Minecraft.Client/Screen.cpp
+++ b/Minecraft.Client/Screen.cpp
@@ -204,7 +204,7 @@ void Screen::updateEvents()
// Map to Screen::keyPressed
int mappedKey = -1;
wchar_t ch = 0;
- if (vk == VK_ESCAPE) mappedKey = Keyboard::KEY_ESCAPE;
+ if (vk == VK_ESCAPE) mappedKey = Keyboard::KEY_ESCAPE;
else if (vk == VK_RETURN) mappedKey = Keyboard::KEY_RETURN;
else if (vk == VK_BACK) mappedKey = Keyboard::KEY_BACK;
else if (vk == VK_UP) mappedKey = Keyboard::KEY_UP;