From c66b5943a5da2e4fdec74864a782af2003255581 Mon Sep 17 00:00:00 2001 From: Sepalani Date: Sun, 25 May 2025 15:36:54 +0400 Subject: [PATCH] fixup! IOS/KBD: Add keyboard support for SDL3 backend --- Source/Core/Common/Keyboard.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/Common/Keyboard.cpp b/Source/Core/Common/Keyboard.cpp index 7d0035e60c..544b39d550 100644 --- a/Source/Core/Common/Keyboard.cpp +++ b/Source/Core/Common/Keyboard.cpp @@ -191,8 +191,10 @@ void KeyboardContext::Quit() void* KeyboardContext::HandlerState::GetHandle() const { +#ifdef _WIN32 if (is_rendering_to_main && !is_fullscreen) return main_handle; +#endif return renderer_handle; }