1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

64-bit compatible enum mismatch display

This commit is contained in:
Brian Fiete 2021-10-28 08:05:37 -07:00
parent 0bfa411d22
commit e6e30f4662

View file

@ -7478,14 +7478,14 @@ String WinDebugger::DbgTypedValueToString(const DbgTypedValue& origTypedValue, c
if ((valueCount == 0) || (bitsLeft != 0)) if ((valueCount == 0) || (bitsLeft != 0))
{ {
if (valueCount > 0) if (valueCount > 0)
retVal += " | "; retVal += " | ";
retVal += StrFormat("%d", bitsLeft); retVal += StrFormat("%lld", bitsLeft);
if (language == DbgLanguage_C) if (language == DbgLanguage_C)
{ {
if (valueCount > 0) if (valueCount > 0)
editVal += " | "; editVal += " | ";
editVal += StrFormat("%d", bitsLeft); editVal += StrFormat("%lld", bitsLeft);
} }
} }