aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/shared/ByteBuffer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/shared/ByteBuffer.h b/src/shared/ByteBuffer.h
index 16988632871..7dc6b5483df 100644
--- a/src/shared/ByteBuffer.h
+++ b/src/shared/ByteBuffer.h
@@ -369,7 +369,7 @@ class ByteBuffer
{
if ((i == (j*8)) && ((i != (k*16))))
{
- if (read<uint8>(i) < 0x0F)
+ if (read<uint8>(i) < 0x10)
{
sLog.outDebugInLine("| 0%X ", read<uint8>(i) );
}
@@ -381,7 +381,7 @@ class ByteBuffer
}
else if (i == (k*16))
{
- if (read<uint8>(i) < 0x0F)
+ if (read<uint8>(i) < 0x10)
{
sLog.outDebugInLine("\n");
@@ -399,7 +399,7 @@ class ByteBuffer
}
else
{
- if (read<uint8>(i) < 0x0F)
+ if (read<uint8>(i) < 0x10)
{
sLog.outDebugInLine("0%X ", read<uint8>(i) );
}