summaryrefslogtreecommitdiff
path: root/src/net/eathena/messagein.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-16 14:12:38 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-16 14:12:38 +0300
commit904ab7f6570a7f9836a7a11fa127b411c75e8923 (patch)
tree688bbc68c37365573b4950c6d8c702c1abd973fc /src/net/eathena/messagein.cpp
parent719eb7581f940c31ae731d420b16b7cd4dc638ae (diff)
downloadplus-904ab7f6570a7f9836a7a11fa127b411c75e8923.tar.gz
plus-904ab7f6570a7f9836a7a11fa127b411c75e8923.tar.bz2
plus-904ab7f6570a7f9836a7a11fa127b411c75e8923.tar.xz
plus-904ab7f6570a7f9836a7a11fa127b411c75e8923.zip
Fix reading int64 from server.
Diffstat (limited to 'src/net/eathena/messagein.cpp')
-rw-r--r--src/net/eathena/messagein.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/messagein.cpp b/src/net/eathena/messagein.cpp
index db3eb1889..e24134a72 100644
--- a/src/net/eathena/messagein.cpp
+++ b/src/net/eathena/messagein.cpp
@@ -87,7 +87,7 @@ int32_t MessageIn::readInt32(const char *const str)
int64_t MessageIn::readInt64(const char *const str)
{
- int32_t value = -1;
+ int64_t value = -1;
if (mPos + 8 <= mLength)
{
#if SDL_BYTEORDER == SDL_BIG_ENDIAN