From 22ca1e0dc52e2d8cb036df948aec0481008eff8d Mon Sep 17 00:00:00 2001 From: DeaDDooMER Date: Thu, 2 Feb 2023 23:06:09 +0300 Subject: [PATCH] sdl: fix --- src/game/sdl/g_system.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/sdl/g_system.pas b/src/game/sdl/g_system.pas index 0dee147..74672ef 100644 --- a/src/game/sdl/g_system.pas +++ b/src/game/sdl/g_system.pas @@ -528,8 +528,8 @@ implementation SDLK_LCTRL: x := IK_CTRL; SDLK_RCTRL: x := IK_RCTRL; SDLK_RALT: x := IK_RALT; - SDLK_LSUPER, SDLK_LMETA: x := IK_WIN; - SDLK_RSUPER, SDLK_RMETA: x := IK_RWIN; + SDLK_LSUPER: x := IK_WIN; + SDLK_RSUPER: x := IK_RWIN; SDLK_MENU: x := IK_MENU; SDLK_PRINT: x := IK_PRINTSCR; SDLK_SCROLLOCK: x := IK_SCROLLLOCK; -- 2.29.2