diff options
Diffstat (limited to 'src/being/localplayer.cpp')
-rw-r--r-- | src/being/localplayer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/being/localplayer.cpp b/src/being/localplayer.cpp index 236b9cb4b..54865a6ae 100644 --- a/src/being/localplayer.cpp +++ b/src/being/localplayer.cpp @@ -1234,7 +1234,7 @@ void LocalPlayer::moveToTarget(int dist) bool gotPos(false); Path debugPath; - unsigned int limit(0); + size_t limit(0); if (dist == -1) { @@ -1299,7 +1299,7 @@ void LocalPlayer::moveToTarget(int dist) else { Position pos(0, 0); - unsigned int f = 0; + size_t f = 0; for (Path::const_iterator i = debugPath.begin(), i_fend = debugPath.end(); |