From a20349cb235a1c9446bdfc4383da2bc3461924ac Mon Sep 17 00:00:00 2001 From: Aireil <33433913+Aireil@users.noreply.github.com> Date: Sat, 29 Jun 2024 11:32:06 +0200 Subject: [PATCH] fix anti debug (#1867) --- Dalamud/Game/Internal/AntiDebug.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dalamud/Game/Internal/AntiDebug.cs b/Dalamud/Game/Internal/AntiDebug.cs index 30aa1aa09..1b0a62a15 100644 --- a/Dalamud/Game/Internal/AntiDebug.cs +++ b/Dalamud/Game/Internal/AntiDebug.cs @@ -22,7 +22,8 @@ internal sealed class AntiDebug : IInternalDisposableService { try { - this.debugCheckAddress = sigScanner.ScanText("FF 15 ?? ?? ?? ?? 33 C9 8B F8"); + // This sig has to be the call site in Framework_Tick + this.debugCheckAddress = sigScanner.ScanText("FF 15 ?? ?? ?? ?? 85 C0 74 13 41"); } catch (KeyNotFoundException) {