diff --git a/src/MIDebugEngine/Engine.Impl/Variables.cs b/src/MIDebugEngine/Engine.Impl/Variables.cs index 32e6b78b7..8c297998f 100644 --- a/src/MIDebugEngine/Engine.Impl/Variables.cs +++ b/src/MIDebugEngine/Engine.Impl/Variables.cs @@ -425,6 +425,9 @@ private string ProcessFormatSpecifiers(string exp, out string formatSpecifier) case "su": case "sub": return "(const char16_t*)(" + exp.Substring(0, lastComma) + ")"; + case "s32": + case "s32b": + return "(const char32_t*)(" + exp.Substring(0, lastComma) + ")"; case "c": return "(char)(" + exp.Substring(0, lastComma) + ")"; // just remove and ignore these