[0008] Typos v_v

Signed-off-by: Yaki Khadafi <elsoldollo@gmail.com>
This commit is contained in:
Yaki Khadafi 2012-08-07 21:00:44 +03:00 committed by Antz
parent a97b8311d2
commit 2bb1b2558e
2 changed files with 3 additions and 3 deletions

View file

@ -92,7 +92,7 @@ void MovementInfo::Read(ByteBuffer& data, uint16 opcode)
if (element >= MSEGuidBit0 && element <= MSEGuidBit7) if (element >= MSEGuidBit0 && element <= MSEGuidBit7)
{ {
guid[element - MSEGuidByte0] = data.ReadBit(); guid[element - MSEGuidBit0] = data.ReadBit();
continue; continue;
} }
@ -293,7 +293,7 @@ void MovementInfo::Write(ByteBuffer& data, uint16 opcode) const
if (element >= MSETransportGuidByte0 && element <= MSETransportGuidByte7) if (element >= MSETransportGuidByte0 && element <= MSETransportGuidByte7)
{ {
if (hasTransportData && t_guid[element - MSEGuidByte0]) if (hasTransportData && t_guid[element - MSETransportGuidByte0])
data << uint8((t_guid[element - MSETransportGuidByte0] ^ 1)); data << uint8((t_guid[element - MSETransportGuidByte0] ^ 1));
continue; continue;
} }

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 "0007" #define REVISION_NR "0008"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__