Skip to content

Commit 2a0f9ef

Browse files
authored
Fix missing s32 format specifier support (#1431)
Fix s32 format specifier support
1 parent 97b44d7 commit 2a0f9ef

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/MIDebugEngine/Engine.Impl/Variables.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -425,6 +425,9 @@ private string ProcessFormatSpecifiers(string exp, out string formatSpecifier)
425425
case "su":
426426
case "sub":
427427
return "(const char16_t*)(" + exp.Substring(0, lastComma) + ")";
428+
case "s32":
429+
case "s32b":
430+
return "(const char32_t*)(" + exp.Substring(0, lastComma) + ")";
428431
case "c":
429432
return "(char)(" + exp.Substring(0, lastComma) + ")";
430433
// just remove and ignore these

0 commit comments

Comments
 (0)