mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 20:12:21 +02:00
Fixed null character display in debugger
This commit is contained in:
parent
7d52b560dd
commit
d59f79ef79
1 changed files with 2 additions and 2 deletions
|
@ -6592,7 +6592,7 @@ String WinDebugger::DbgTypedValueToString(const DbgTypedValue& origTypedValue, c
|
||||||
result = StrFormat("'%s'\n", result.c_str());
|
result = StrFormat("'%s'\n", result.c_str());
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
result = "'\\0'";
|
result = "'\\0'\n";
|
||||||
return result + WrapWithModifiers(isBeef ? "char16" : "int16_t", origValueType, language);
|
return result + WrapWithModifiers(isBeef ? "char16" : "int16_t", origValueType, language);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -6609,7 +6609,7 @@ String WinDebugger::DbgTypedValueToString(const DbgTypedValue& origTypedValue, c
|
||||||
result = StrFormat("'%s'\n", result.c_str());
|
result = StrFormat("'%s'\n", result.c_str());
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
result = "'\\0'";
|
result = "'\\0'\n";
|
||||||
return result + WrapWithModifiers(isBeef ? "char32" : "int32_t", origValueType, language);
|
return result + WrapWithModifiers(isBeef ? "char32" : "int32_t", origValueType, language);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue