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/being.h | |
parent | 185a53c504a0d53e54a7425ea829b5c951661ea8 (diff) | |
download | mv-c3434fa53d1c83bc65b640951364f842fe6c79f4.tar.gz mv-c3434fa53d1c83bc65b640951364f842fe6c79f4.tar.bz2 mv-c3434fa53d1c83bc65b640951364f842fe6c79f4.tar.xz mv-c3434fa53d1c83bc65b640951364f842fe6c79f4.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; |