diff options
author | megamage <none@none> | 2009-05-31 16:26:06 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-05-31 16:26:06 -0500 |
commit | 341101c171b3902b8d18d457988ed5c841d67832 (patch) | |
tree | cd40e794f72b53ca3f08e8b182308bf3b23ba931 | |
parent | 5612f1221c357f5cbb0720ddf200e7f5f40544be (diff) |
[7925] Correct minor output format error inside ByteBuffer class Author: Naicisum
--HG--
branch : trunk
-rw-r--r-- | src/shared/ByteBuffer.h | 6 |
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) ); } |