Split the name for signed and unsigned int writing in cProtocol.
Hopefully this fixes compilation problems with 64-bit debian ( http://forum.mc-server.org/showthread.php?tid=575 ) git-svn-id: http://mc-server.googlecode.com/svn/trunk@940 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
@@ -126,7 +126,7 @@ protected:
|
||||
SendData((const char *)&a_Value, 4);
|
||||
}
|
||||
|
||||
void WriteInt(unsigned int a_Value)
|
||||
void WriteUInt(unsigned int a_Value)
|
||||
{
|
||||
a_Value = htonl(a_Value);
|
||||
SendData((const char *)&a_Value, 4);
|
||||
|
||||
Reference in New Issue
Block a user