diff --git a/renderdoc/serialise/utf8printf.cpp b/renderdoc/serialise/utf8printf.cpp index dedec5919..6084c065e 100644 --- a/renderdoc/serialise/utf8printf.cpp +++ b/renderdoc/serialise/utf8printf.cpp @@ -1081,6 +1081,9 @@ void formatargument(char type, void *rawarg, FormatterParams formatter, char *&o typeUnsigned = true; } + if(typeUnsigned) + formatter.Flags &= ~(PrependPos | PrependSpace); + PrintInteger(typeUnsigned, argu, base, numbits, formatter, uppercaseDigits, output, actualsize, end); }