diff options
author | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2010-01-21 23:23:26 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2010-01-21 23:40:27 +0100 |
commit | 7fa3653824e7aacf15aa4fc14f2465addc831851 (patch) | |
tree | b8a4dbb0dc3461c494154d6f5c0a318fcac05838 /src/being.cpp | |
parent | 762053a1547c32c2036f0d3647bfb8d19d009320 (diff) | |
download | mana-7fa3653824e7aacf15aa4fc14f2465addc831851.tar.gz mana-7fa3653824e7aacf15aa4fc14f2465addc831851.tar.bz2 mana-7fa3653824e7aacf15aa4fc14f2465addc831851.tar.xz mana-7fa3653824e7aacf15aa4fc14f2465addc831851.zip |
No point in differentiating between int and Uint16
Diffstat (limited to 'src/being.cpp')
-rw-r--r-- | src/being.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/being.cpp b/src/being.cpp index 45a621e4..63b18dee 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -136,7 +136,7 @@ void Being::setPosition(const Vector &pos) } #ifdef EATHENA_SUPPORT -void Being::setDestination(Uint16 destX, Uint16 destY) +void Being::setDestination(int destX, int destY) { if (mMap) setPath(mMap->findPath(mX, mY, destX, destY, getWalkMask())); |