1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-21 21:49:10 +00:00

Fix 2d27e8e: Update numpad keycodes for SDL2, making it usable (#12596)

* Fix 2d27e8e: Update numpad keycodes for SDL2, making it usable

* Cleanup: List sdl2 numpad mappings individually
This commit is contained in:
Fen
2024-05-01 23:10:01 +02:00
committed by Rubidium
parent 3b501b5d27
commit 5a55df686d

View File

@@ -282,7 +282,16 @@ static const SDLVkMapping _vk_mapping[] = {
AM_UP(SDLK_F1, SDLK_F12, WKC_F1, WKC_F12),
/* Numeric part. */
AM(SDLK_KP_0, SDLK_KP_9, '0', '9'),
AS(SDLK_KP_1, '1'),
AS(SDLK_KP_2, '2'),
AS(SDLK_KP_3, '3'),
AS(SDLK_KP_4, '4'),
AS(SDLK_KP_5, '5'),
AS(SDLK_KP_6, '6'),
AS(SDLK_KP_7, '7'),
AS(SDLK_KP_8, '8'),
AS(SDLK_KP_9, '9'),
AS(SDLK_KP_0, '0'),
AS(SDLK_KP_DIVIDE, WKC_NUM_DIV),
AS(SDLK_KP_MULTIPLY, WKC_NUM_MUL),
AS(SDLK_KP_MINUS, WKC_NUM_MINUS),