From 103a35ee40e72c78f840a0ef7793743ce70e5c67 Mon Sep 17 00:00:00 2001 From: Jorijn van der Graaf Date: Tue, 10 Mar 2026 03:24:01 +0100 Subject: [PATCH] vk shift crash --- implementations/Crafter.Graphics-Window.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/implementations/Crafter.Graphics-Window.cpp b/implementations/Crafter.Graphics-Window.cpp index 8523190..aad5bce 100644 --- a/implementations/Crafter.Graphics-Window.cpp +++ b/implementations/Crafter.Graphics-Window.cpp @@ -191,6 +191,7 @@ CrafterKeys vk_to_crafter_key(WPARAM vk) case VK_SCROLL: return CrafterKeys::ScrollLock; // Modifiers + case VK_SHIFT: return CrafterKeys::LeftShift; case VK_LSHIFT: return CrafterKeys::LeftShift; case VK_RSHIFT: return CrafterKeys::RightShift; case VK_LCONTROL: return CrafterKeys::LeftCtrl;