mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Fixes to enum changes, fixed [Checked] debugger interaction
This commit is contained in:
parent
17be9daade
commit
64f117b89f
10 changed files with 116 additions and 24 deletions
|
@ -7673,7 +7673,7 @@ String WinDebugger::DbgTypedValueToString(const DbgTypedValue& origTypedValue, c
|
|||
{
|
||||
summaryType->PopulateType();
|
||||
|
||||
if (summaryType->IsPrimitiveType())
|
||||
if (summaryType->IsTypedPrimitive())
|
||||
{
|
||||
if (formatInfo.mTotalSummaryLength + (int)displayString.length() > 255)
|
||||
{
|
||||
|
@ -7688,7 +7688,7 @@ String WinDebugger::DbgTypedValueToString(const DbgTypedValue& origTypedValue, c
|
|||
displayStrFormatInfo.mTotalSummaryLength += (int)displayString.length();
|
||||
displayStrFormatInfo.mHidePointers = false;
|
||||
|
||||
auto primType = dwUseType->GetDbgModule()->GetPrimitiveType(summaryType->mTypeCode, dwUseType->GetLanguage());
|
||||
DbgType* primType = summaryType->mTypeParam;
|
||||
String result;
|
||||
|
||||
if ((dataPtr != 0) && (dataPtr != -1))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue