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:32:49 +0300 |
commit | 2ed0917b4ee942ff55639500f846ae9cb4f48b90 (patch) | |
tree | 431158e61d703a747115088e1b084651c923e0dd /src/being.h | |
parent | 875ece90ff94c4cf295b53c8bb37d9238ece38e9 (diff) | |
download | manaverse-2ed0917b4ee942ff55639500f846ae9cb4f48b90.tar.gz manaverse-2ed0917b4ee942ff55639500f846ae9cb4f48b90.tar.bz2 manaverse-2ed0917b4ee942ff55639500f846ae9cb4f48b90.tar.xz manaverse-2ed0917b4ee942ff55639500f846ae9cb4f48b90.zip |
Fix some signed/unsigned chars issues.
Diffstat (limited to 'src/being.h')
-rw-r--r-- | src/being.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/being.h b/src/being.h index 438707567..a9ccba82e 100644 --- a/src/being.h +++ b/src/being.h @@ -922,7 +922,7 @@ class Being : public ActorSprite, public ConfigListener * If walking in direction 'neg' the value is negated. * TODO: Used by eAthena only? */ - int getOffset(const char pos, const char neg) const; + int getOffset(const signed char pos, const signed char neg) const; int searchSlotValue(std::vector<int> &slotRemap, const int val) const; |