From 64a114f69f3126279aca053778230adf84a63008 Mon Sep 17 00:00:00 2001 From: akallabeth Date: Tue, 25 Mar 2025 11:53:24 +0100 Subject: [PATCH] [client,sdl] fix windows type mismatch --- client/SDL/SDL3/sdl_kbd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/SDL/SDL3/sdl_kbd.cpp b/client/SDL/SDL3/sdl_kbd.cpp index 39360d351..fcebfccb3 100644 --- a/client/SDL/SDL3/sdl_kbd.cpp +++ b/client/SDL/SDL3/sdl_kbd.cpp @@ -663,7 +663,7 @@ BOOL sdlInput::initialize() if (freerdp_settings_get_uint32(settings, FreeRDP_KeyboardLayout) == 0) { - uint32_t KeyboardLayout = 0; + DWORD KeyboardLayout = 0; freerdp_detect_keyboard_layout_from_system_locale(&KeyboardLayout); if (KeyboardLayout == 0)