From 9b68cc0635bacde57ff8ae7b957f164d84d9ebde Mon Sep 17 00:00:00 2001 From: Amrsatrio Date: Fri, 22 Dec 2023 20:25:06 +0700 Subject: [PATCH] Taskbar10: Revised the pattern for patching the new IME context menu so that it works on 25951 ^2 --- ExplorerPatcher/utility.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ExplorerPatcher/utility.h b/ExplorerPatcher/utility.h index f282cf0..be16cc7 100644 --- a/ExplorerPatcher/utility.h +++ b/ExplorerPatcher/utility.h @@ -611,7 +611,7 @@ inline BOOL WINAPI PatchContextMenuOfNewMicrosoftIME(BOOL* bFound) if (!VirtualProtect(match + 4, 1, PAGE_EXECUTE_READWRITE, &dwOldProtect)) return FALSE; - match[6] = 0xEB; + match[4] = 0xEB; VirtualProtect(match + 4, 1, dwOldProtect, &dwOldProtect);