diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-16 00:27:51 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-16 00:27:51 +0300 |
commit | c3434fa53d1c83bc65b640951364f842fe6c79f4 (patch) | |
tree | 51aa552c585518d7b2e2d67eba7c9500065dae05 /src/net/eathena/playerhandler.cpp | |
parent | 185a53c504a0d53e54a7425ea829b5c951661ea8 (diff) | |
download | plus-c3434fa53d1c83bc65b640951364f842fe6c79f4.tar.gz plus-c3434fa53d1c83bc65b640951364f842fe6c79f4.tar.bz2 plus-c3434fa53d1c83bc65b640951364f842fe6c79f4.tar.xz plus-c3434fa53d1c83bc65b640951364f842fe6c79f4.zip |
Fix some signed/unsigned chars issues.
Diffstat (limited to 'src/net/eathena/playerhandler.cpp')
-rw-r--r-- | src/net/eathena/playerhandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/eathena/playerhandler.cpp b/src/net/eathena/playerhandler.cpp index 0d4a51bc9..f7a2dccb6 100644 --- a/src/net/eathena/playerhandler.cpp +++ b/src/net/eathena/playerhandler.cpp @@ -168,7 +168,7 @@ void PlayerHandler::pickUp(const FloorItem *floorItem) handler->pushPickup(floorItem->getId()); } -void PlayerHandler::setDirection(char direction) +void PlayerHandler::setDirection(unsigned char direction) { MessageOut outMsg(CMSG_PLAYER_CHANGE_DIR); outMsg.writeInt16(0); @@ -185,7 +185,7 @@ void PlayerHandler::setDestination(int x, int y, int direction) void PlayerHandler::changeAction(Being::Action action) { - char type; + unsigned char type; switch (action) { case Being::SIT: |