mirror of
https://github.com/mangosfour/server.git
synced 2025-12-21 01:37:05 +00:00
[7925] Correct minor output format error inside ByteBuffer class
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
6e9339b093
commit
60e450166d
2 changed files with 4 additions and 4 deletions
|
|
@ -370,7 +370,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) );
|
||||
}
|
||||
|
|
@ -382,7 +382,7 @@ class ByteBuffer
|
|||
}
|
||||
else if (i == (k*16))
|
||||
{
|
||||
if (read<uint8>(i) < 0x0F)
|
||||
if (read<uint8>(i) < 0x10)
|
||||
{
|
||||
sLog.outDebugInLine("\n");
|
||||
if(sLog.IsIncludeTime())
|
||||
|
|
@ -404,7 +404,7 @@ class ByteBuffer
|
|||
}
|
||||
else
|
||||
{
|
||||
if (read<uint8>(i) < 0x0F)
|
||||
if (read<uint8>(i) < 0x10)
|
||||
{
|
||||
sLog.outDebugInLine("0%X ", read<uint8>(i) );
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "7924"
|
||||
#define REVISION_NR "7925"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue