[7925] Correct minor output format error inside ByteBuffer class

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
Naicisum 2009-05-31 09:32:44 +04:00 committed by VladimirMangos
parent 6e9339b093
commit 60e450166d
2 changed files with 4 additions and 4 deletions

View file

@ -370,7 +370,7 @@ class ByteBuffer
{ {
if ((i == (j*8)) && ((i != (k*16)))) if ((i == (j*8)) && ((i != (k*16))))
{ {
if (read<uint8>(i) < 0x0F) if (read<uint8>(i) < 0x10)
{ {
sLog.outDebugInLine("| 0%X ", read<uint8>(i) ); sLog.outDebugInLine("| 0%X ", read<uint8>(i) );
} }
@ -382,7 +382,7 @@ class ByteBuffer
} }
else if (i == (k*16)) else if (i == (k*16))
{ {
if (read<uint8>(i) < 0x0F) if (read<uint8>(i) < 0x10)
{ {
sLog.outDebugInLine("\n"); sLog.outDebugInLine("\n");
if(sLog.IsIncludeTime()) if(sLog.IsIncludeTime())
@ -404,7 +404,7 @@ class ByteBuffer
} }
else else
{ {
if (read<uint8>(i) < 0x0F) if (read<uint8>(i) < 0x10)
{ {
sLog.outDebugInLine("0%X ", read<uint8>(i) ); sLog.outDebugInLine("0%X ", read<uint8>(i) );
} }

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "7924" #define REVISION_NR "7925"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__