summaryrefslogtreecommitdiff
path: root/src/being.cpp
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:27:51 +0300
commitc3434fa53d1c83bc65b640951364f842fe6c79f4 (patch)
tree51aa552c585518d7b2e2d67eba7c9500065dae05 /src/being.cpp
parent185a53c504a0d53e54a7425ea829b5c951661ea8 (diff)
downloadplus-c3434fa53d1c83bc65b640951364f842fe6c79f4.tar.gz
plus-c3434fa53d1c83bc65b640951364f842fe6c79f4.tar.bz2
plus-c3434fa53d1c83bc65b640951364f842fe6c79f4.tar.xz
plus-c3434fa53d1c83bc65b640951364f842fe6c79f4.zip
Fix some signed/unsigned chars issues.
Diffstat (limited to 'src/being.cpp')
-rw-r--r--src/being.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/being.cpp b/src/being.cpp
index 6be9effb4..210736117 100644
--- a/src/being.cpp
+++ b/src/being.cpp
@@ -1521,7 +1521,7 @@ void Being::drawSpeech(const int offsetX, const int offsetY)
}
/** TODO: eAthena only */
-int Being::getOffset(const char pos, const char neg) const
+int Being::getOffset(const signed char pos, const signed char neg) const
{
// Check whether we're walking in the requested direction
if (mAction != MOVE || !(mDirection & (pos | neg)))