1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00

Fixed null character display in debugger

This commit is contained in:
Brian Fiete 2020-01-23 07:42:56 -08:00
parent 7d52b560dd
commit d59f79ef79

View file

@ -6592,7 +6592,7 @@ String WinDebugger::DbgTypedValueToString(const DbgTypedValue& origTypedValue, c
result = StrFormat("'%s'\n", result.c_str());
}
else
result = "'\\0'";
result = "'\\0'\n";
return result + WrapWithModifiers(isBeef ? "char16" : "int16_t", origValueType, language);
}
break;
@ -6609,7 +6609,7 @@ String WinDebugger::DbgTypedValueToString(const DbgTypedValue& origTypedValue, c
result = StrFormat("'%s'\n", result.c_str());
}
else
result = "'\\0'";
result = "'\\0'\n";
return result + WrapWithModifiers(isBeef ? "char32" : "int32_t", origValueType, language);
}
break;