From f89841e4df093fbb873c2ee68bf63868c01334d3 Mon Sep 17 00:00:00 2001 From: Packmad Date: Tue, 9 Dec 2025 21:38:02 +0100 Subject: [PATCH] Change REGDUMP to REGDUMP_AVX512 in core.cpp Fixes a compile error with the latest x64dbg sdk --- ext_x64dbg/x64dbg_sync/core.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext_x64dbg/x64dbg_sync/core.cpp b/ext_x64dbg/x64dbg_sync/core.cpp index 070c7cc1..43a7c16c 100644 --- a/ext_x64dbg/x64dbg_sync/core.cpp +++ b/ext_x64dbg/x64dbg_sync/core.cpp @@ -40,7 +40,7 @@ static CRITICAL_SECTION g_CritSectPollRelease; // Debuggee's state; ULONG_PTR g_Offset = NULL; ULONG_PTR g_Base = NULL; -REGDUMP regs; +REGDUMP_AVX512 regs; // Synchronisation mode static BOOL g_SyncAuto = true;