From 4434d10445911495d7b78def53f6575b33b9e37e Mon Sep 17 00:00:00 2001 From: Amrsatrio Date: Tue, 16 Sep 2025 20:25:05 +0700 Subject: [PATCH] Start10: Add new bTransitioningToCortana pattern for 27938+ ^3 --- ExplorerPatcher/TwinUIPatches.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ExplorerPatcher/TwinUIPatches.cpp b/ExplorerPatcher/TwinUIPatches.cpp index ca49f8e..3e85d0a 100644 --- a/ExplorerPatcher/TwinUIPatches.cpp +++ b/ExplorerPatcher/TwinUIPatches.cpp @@ -2025,7 +2025,7 @@ BOOL FixStartMenuAnimation(LPMODULEINFO mi) // `(CStartExperienceManager *)((char *)this - 40)` before field access // ``` // 48 83 C1 ?? 80 B9 ?? ?? ?? ?? 00 75 ?? 41 B0 01 - // ^^^^^^^^^^^ bTransitioningToCortana + // ^^^^^^^^^^^ bTransitioningToCortana // ``` // Ref: CStartExperienceManager::DimStart() matchTransitioningToCortanaField = (PBYTE)FindPattern( @@ -2036,7 +2036,7 @@ BOOL FixStartMenuAnimation(LPMODULEINFO mi) ); if (matchTransitioningToCortanaField) { - g_SMAnimationPatchOffsets.startExperienceManager_bTransitioningToCortana = *(int*)(matchTransitioningToCortanaField + 5); + g_SMAnimationPatchOffsets.startExperienceManager_bTransitioningToCortana = *(int*)(matchTransitioningToCortanaField + 6); } } #elif defined(_M_ARM64)