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.h | |
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.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 f670722c..5e17a1df 100644 --- a/src/being.h +++ b/src/being.h @@ -147,7 +147,7 @@ class Being : public Sprite, public ConfigListener * Sets a new destination for this being to walk to. */ #ifdef EATHENA_SUPPORT - virtual void setDestination(Uint16 destX, Uint16 destY); + virtual void setDestination(int destX, int destY); #else /** * Creates a path for the being from current position to ex and ey |