*fixed toHexDump once more. didnt see that yesterday, was tired.

This commit is contained in:
False.Genesis 2007-09-30 10:27:00 +00:00
parent b166014b4c
commit 9b0da733cc

View File

@ -94,7 +94,7 @@ std::string toHexDump(uint8* array,uint32 size,bool spaces)
{
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;
}
else