Explicitly list stencil as hex with 0xXX form.

This commit is contained in:
baldurk
2014-08-03 15:04:24 +01:00
parent 4e6c8202b4
commit aeb6ae3bcb
+2 -2
View File
@@ -155,8 +155,8 @@ namespace renderdocui.Windows
if (mod.preMod.stencil >= 0)
{
preModVal += String.Format("\nS: {0:X}", mod.preMod.stencil);
postModVal += String.Format("\nS: {0:X}", mod.postMod.stencil);
preModVal += String.Format("\nS: 0x{0:X2}", mod.preMod.stencil);
postModVal += String.Format("\nS: 0x{0:X2}", mod.postMod.stencil);
}
else
{