diff options
Diffstat (limited to 'src/net/eathena/gamerecv.cpp')
-rw-r--r-- | src/net/eathena/gamerecv.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/net/eathena/gamerecv.cpp b/src/net/eathena/gamerecv.cpp index 9a517c74f..d78d5d92d 100644 --- a/src/net/eathena/gamerecv.cpp +++ b/src/net/eathena/gamerecv.cpp @@ -47,7 +47,8 @@ void GameRecv::processMapAccountId(Net::MessageIn &msg) void GameRecv::processMapLogin(Net::MessageIn &msg) { unsigned char direction; - uint16_t x, y; + uint16_t x; + uint16_t y; msg.readInt32("start time"); msg.readCoordinates(x, y, direction, "position"); msg.readInt8("x size"); |