*fixed toHexDump once more. didnt see that yesterday, was tired.
This commit is contained in:
parent
b166014b4c
commit
9b0da733cc
@ -94,7 +94,7 @@ std::string toHexDump(uint8* array,uint32 size,bool spaces)
|
|||||||
{
|
{
|
||||||
if(array[i])
|
if(array[i])
|
||||||
{
|
{
|
||||||
sprintf(buf,(array[i]<0x0F)?"0%X":"%X",(uint32)array[i]);
|
sprintf(buf,(array[i]<=0x0F)?"0%X":"%X",(uint32)array[i]);
|
||||||
ss << buf;
|
ss << buf;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user