diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-07-23 12:45:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-07-23 12:45:57 +0300 |
commit | 6576d46a7f420edfc53226811a3158d6e509a7bc (patch) | |
tree | ffd0e61bd56bb11f76cd27cdfbaaa6b10b9ec14d /src/being | |
parent | 833ee2d763001667f5818a1922f5e96d60890cd9 (diff) | |
download | plus-6576d46a7f420edfc53226811a3158d6e509a7bc.tar.gz plus-6576d46a7f420edfc53226811a3158d6e509a7bc.tar.bz2 plus-6576d46a7f420edfc53226811a3158d6e509a7bc.tar.xz plus-6576d46a7f420edfc53226811a3158d6e509a7bc.zip |
Fix compilation warnings and fix issue introduced in last commits.
Diffstat (limited to 'src/being')
-rw-r--r-- | src/being/localplayer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/being/localplayer.cpp b/src/being/localplayer.cpp index 07447601e..c3937badc 100644 --- a/src/being/localplayer.cpp +++ b/src/being/localplayer.cpp @@ -2160,7 +2160,7 @@ void LocalPlayer::specialMove(const unsigned char direction) if (mAction == BeingAction::MOVE) return; - int max; + unsigned int max; if (settings.moveType == 2) max = 5; |