mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-06 10:00:40 +00:00
Don't use uppercase 0X for alternate form hex printing
This commit is contained in:
@@ -207,10 +207,7 @@ void PrintInteger(bool typeUnsigned, uint64_t argu, int base, uint64_t numbits,
|
||||
{
|
||||
if(formatter.Flags & AlternateForm)
|
||||
{
|
||||
if(uppercaseDigits)
|
||||
appendstring(output, actualsize, end, "0X");
|
||||
else
|
||||
appendstring(output, actualsize, end, "0x");
|
||||
appendstring(output, actualsize, end, "0x");
|
||||
}
|
||||
|
||||
// pad with 0s as appropriate
|
||||
|
||||
Reference in New Issue
Block a user