From b99b855dcb11f4ba022781197f1f7ea0e52220fb Mon Sep 17 00:00:00 2001 From: Anonymous Maarten Date: Sun, 23 Jun 2024 01:22:40 +0200 Subject: [PATCH] SDL3 is still instable --- ISLE/isleapp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ISLE/isleapp.cpp b/ISLE/isleapp.cpp index c9507e58..d70878ed 100644 --- a/ISLE/isleapp.cpp +++ b/ISLE/isleapp.cpp @@ -334,7 +334,7 @@ int SDL_AppEvent(void* appstate, const SDL_Event* event) break; } - SDL_Keycode keyCode = event->key.keysym.sym; + SDL_Keycode keyCode = event->key.key; if (InputManager()) { InputManager()->QueueEvent(c_notificationKeyPress, keyCode, 0, 0, keyCode); }