diff options
Diffstat (limited to 'src/net/tmwa/gamerecv.cpp')
-rw-r--r-- | src/net/tmwa/gamerecv.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/net/tmwa/gamerecv.cpp b/src/net/tmwa/gamerecv.cpp index c1b1c399a..76c2e6bfa 100644 --- a/src/net/tmwa/gamerecv.cpp +++ b/src/net/tmwa/gamerecv.cpp @@ -41,7 +41,8 @@ extern ServerInfo mapServer; void GameRecv::processMapLogin(Net::MessageIn &msg) { unsigned char direction; - uint16_t x, y; + uint16_t x; + uint16_t y; msg.readInt32("tick"); msg.readCoordinates(x, y, direction, "position"); msg.readInt16("unknown?"); |