diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-07-27 20:33:12 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-07-27 20:33:12 -0600 |
commit | ca483b3681aeba5aa1a7dba20726c3bd6e5ebd3d (patch) | |
tree | 97a2552e2dccc9a332c30e40542458c26291a290 /src/being.cpp | |
parent | 5a27795be5450add2cf3da3c03b2fe8771325e3e (diff) | |
download | mana-ca483b3681aeba5aa1a7dba20726c3bd6e5ebd3d.tar.gz mana-ca483b3681aeba5aa1a7dba20726c3bd6e5ebd3d.tar.bz2 mana-ca483b3681aeba5aa1a7dba20726c3bd6e5ebd3d.tar.xz mana-ca483b3681aeba5aa1a7dba20726c3bd6e5ebd3d.zip |
Fix compile warnings from last commit
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 ea587afb..b915e797 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -66,7 +66,6 @@ static const int DEFAULT_HEIGHT = 32; Being::Being(int id, int job, Map *map): #ifdef EATHENA_SUPPORT - mX(0), mY(0), mWalkTime(0), #endif mEmotion(0), mEmotionTime(0), @@ -100,6 +99,7 @@ Being::Being(int id, int job, Map *map): mWalkSpeed(150), #endif mPx(0), mPy(0), + mX(0), mY(0), mUsedTargetCursor(NULL) { setMap(map); |