diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2006-12-11 18:43:56 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2006-12-11 18:43:56 +0000 |
commit | d7015ada2a147926e7cedf80d10ea281c6e06798 (patch) | |
tree | d385ad0989883f70e8c8e8b093b74eb2ffa92281 /src/localplayer.h | |
parent | a960554e550ef12455f68fee540f9054faa6c618 (diff) | |
download | mana-d7015ada2a147926e7cedf80d10ea281c6e06798.tar.gz mana-d7015ada2a147926e7cedf80d10ea281c6e06798.tar.bz2 mana-d7015ada2a147926e7cedf80d10ea281c6e06798.tar.xz mana-d7015ada2a147926e7cedf80d10ea281c6e06798.zip |
Fixed visibility of the update window.
Diffstat (limited to 'src/localplayer.h')
-rw-r--r-- | src/localplayer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/localplayer.h b/src/localplayer.h index 04477af2..7cad9bc4 100644 --- a/src/localplayer.h +++ b/src/localplayer.h @@ -162,8 +162,8 @@ class LocalPlayer : public Player bool mTrading; int mLastAction; /**< Time stamp of the last action, -1 if none. */ int mWalkingDir; /**< The direction the player is walking in. */ - int destX; /**< X coordinate of destination. */ - int destY; /**< Y coordinate of destination. */ + int mDestX; /**< X coordinate of destination. */ + int mDestY; /**< Y coordinate of destination. */ }; extern LocalPlayer *player_node; |