From 117bbc43c7d0a5054ce72a48cef99a98c00935d6 Mon Sep 17 00:00:00 2001 From: OBattler Date: Fri, 3 Jan 2025 19:44:03 +0100 Subject: [PATCH] Windows: Pause's fake CTRL needs to be adjusted for break code as well. --- src/qt/qt_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/qt_main.cpp b/src/qt/qt_main.cpp index eb3c0df82..c61fa1960 100644 --- a/src/qt/qt_main.cpp +++ b/src/qt/qt_main.cpp @@ -242,7 +242,7 @@ emu_LowLevelKeyboardProc(int nCode, WPARAM wParam, LPARAM lParam) /* Pause - send E1 1D. */ pclog("Send E1 1D\n"); win_keyboard_handle(0xe1, 0, 0, 0); - win_keyboard_handle(0x1d, 0, 0, 0); + win_keyboard_handle(0x1d, LLKHF_UP, 0, 0); } } else if (!last && (lpKdhs->scanCode == 0x00000036)) /* Non-fake right shift. */