From b753862aabc344878941f8170b8861c320cb66e3 Mon Sep 17 00:00:00 2001 From: ahmed Date: Thu, 26 Jun 2025 12:13:15 +0300 Subject: [PATCH] fix pointer type alias to be actually a pointer --- Zydis/Zydis.Decoder.Types.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zydis/Zydis.Decoder.Types.pas b/Zydis/Zydis.Decoder.Types.pas index 1ffd72a..4efb496 100644 --- a/Zydis/Zydis.Decoder.Types.pas +++ b/Zydis/Zydis.Decoder.Types.pas @@ -461,7 +461,7 @@ TZydisDecoderContext = record // The scale factor for EVEX/MVEX compressed 8-bit displacement values. cd8_scale: ZyanU8; // TODO: Could make sense to expose this in the ZydisDecodedInstruction end; - PZydisDecoderContext = TZydisDecoderContext; + PZydisDecoderContext = ^TZydisDecoderContext; implementation