From c7156d27bbf33b30c59abfa450231be7f2b5b7dd Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Sat, 23 Jan 2021 00:34:06 +0100 Subject: [PATCH] fix: don't fuck up patch in debug fix --- Dalamud/Game/Internal/AntiDebug.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Game/Internal/AntiDebug.cs b/Dalamud/Game/Internal/AntiDebug.cs index 3cb169311..0e76f316a 100644 --- a/Dalamud/Game/Internal/AntiDebug.cs +++ b/Dalamud/Game/Internal/AntiDebug.cs @@ -24,7 +24,7 @@ namespace Dalamud.Game.Internal Log.Verbose("DebugCheck address {DebugCheckAddress}", DebugCheckAddress); } - private readonly byte[] nop = new byte[] { 0x31, 0xC0, 0x90, 0x90, 0x90, 0x90, 0x90 }; + private readonly byte[] nop = new byte[] { 0x31, 0xC0, 0x90, 0x90, 0x90, 0x90 }; private byte[] original; public void Enable() {