summaryrefslogtreecommitdiff
path: root/src/position.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-03-27 14:26:23 +0100
committerBjørn Lindeijer <bjorn@lindeijer.nl>2009-03-27 14:34:30 +0100
commit31c28bbd0349475079ed2111c32b3cd07400554e (patch)
treef3068b3760b1782321143e3a06fe55fca8ae48f1 /src/position.h
parent057e55c47ef3194ad56a09128eaa959984f2fd4a (diff)
downloadMana-31c28bbd0349475079ed2111c32b3cd07400554e.tar.gz
Mana-31c28bbd0349475079ed2111c32b3cd07400554e.tar.bz2
Mana-31c28bbd0349475079ed2111c32b3cd07400554e.tar.xz
Mana-31c28bbd0349475079ed2111c32b3cd07400554e.zip
Fixed position of dots on minimap
Also made mPx and mPy private and synchronize with mPos on setPosition(). The side effects of setting destination and clearing the path have been removed from setPosition(). Only the tmwserv PlayerHandler seemed to rely on that feature. Mantis-issue: 672
Diffstat (limited to 'src/position.h')
-rw-r--r--src/position.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/position.h b/src/position.h
index cbcf8c99..9cc86602 100644
--- a/src/position.h
+++ b/src/position.h
@@ -30,9 +30,6 @@
*/
struct Position
{
- /**
- * Constructor.
- */
Position(int x, int y):
x(x), y(y)
{ }