FpDebug: (fix compile) display-format for ymm/xmm

This commit is contained in:
Martin 2024-07-12 17:00:07 +02:00
parent 9092967d44
commit 76c4dc085a

View File

@ -1037,7 +1037,7 @@ begin
case AFormat of
rdDefault: Result := IntToStr(FNumValue);
rdHex: Result := '$'+IntToHex(FNumValue);
rdHex: Result := '$'+Dec64ToNumb(FNumValue, 0, 16);
rdBinary: Result := '%'+Dec64ToNumb(FNumValue, 0, 2);
rdOctal: Result := '&'+Dec64ToNumb(FNumValue, 0, 8);
rdDecimal: Result := IntToStr(FNumValue);