summaryrefslogtreecommitdiff
path: root/src/net/eathena/playerhandler.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-10-16 00:27:51 +0300
committerAndrei Karas <akaras@inbox.ru>2012-10-16 00:32:49 +0300
commit2ed0917b4ee942ff55639500f846ae9cb4f48b90 (patch)
tree431158e61d703a747115088e1b084651c923e0dd /src/net/eathena/playerhandler.h
parent875ece90ff94c4cf295b53c8bb37d9238ece38e9 (diff)
downloadplus-2ed0917b4ee942ff55639500f846ae9cb4f48b90.tar.gz
plus-2ed0917b4ee942ff55639500f846ae9cb4f48b90.tar.bz2
plus-2ed0917b4ee942ff55639500f846ae9cb4f48b90.tar.xz
plus-2ed0917b4ee942ff55639500f846ae9cb4f48b90.zip
Fix some signed/unsigned chars issues.
Diffstat (limited to 'src/net/eathena/playerhandler.h')
-rw-r--r--src/net/eathena/playerhandler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/playerhandler.h b/src/net/eathena/playerhandler.h
index 80d905460..ca2dc3fc3 100644
--- a/src/net/eathena/playerhandler.h
+++ b/src/net/eathena/playerhandler.h
@@ -50,7 +50,7 @@ class PlayerHandler final : public MessageHandler, public Ea::PlayerHandler
void increaseSkill(unsigned short skillId);
void pickUp(const FloorItem *floorItem);
- void setDirection(char direction);
+ void setDirection(unsigned char direction);
void setDestination(int x, int y, int direction = -1);
void changeAction(Being::Action action);
void updateStatus(uint8_t status);