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:
parent
0bfa411d22
commit
e6e30f4662
1 changed files with 3 additions and 3 deletions
|
@ -7479,13 +7479,13 @@ String WinDebugger::DbgTypedValueToString(const DbgTypedValue& origTypedValue, c
|
|||
{
|
||||
if (valueCount > 0)
|
||||
retVal += " | ";
|
||||
retVal += StrFormat("%d", bitsLeft);
|
||||
retVal += StrFormat("%lld", bitsLeft);
|
||||
|
||||
if (language == DbgLanguage_C)
|
||||
{
|
||||
if (valueCount > 0)
|
||||
editVal += " | ";
|
||||
editVal += StrFormat("%d", bitsLeft);
|
||||
editVal += StrFormat("%lld", bitsLeft);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue