From 0a640667249c145c4cb183f89267a3e8d50ef059 Mon Sep 17 00:00:00 2001 From: Valentin Radu Date: Tue, 16 Nov 2021 04:23:27 +0200 Subject: [PATCH] Fixed keyboard not activating sections 8 and 9 --- ExplorerPatcher/GUI.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ExplorerPatcher/GUI.c b/ExplorerPatcher/GUI.c index bd65ba4..d13ed2c 100644 --- a/ExplorerPatcher/GUI.c +++ b/ExplorerPatcher/GUI.c @@ -1444,7 +1444,7 @@ static LRESULT CALLBACK GUI_WindowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPAR return 0; } // this should be determined from the file, but for now it works - else if (wParam >= 0x30 + 1 && wParam <= 0x30 + 7) + else if (wParam >= 0x30 + 1 && wParam <= 0x30 + 9) { _this->tabOrder = 0; _this->section = wParam - 0x30 - 1;