summaryrefslogtreecommitdiff
path: root/src/game-server/map.cpp
diff options
context:
space:
mode:
authorErik Schilling <ablu.erikschilling@googlemail.com>2013-01-29 21:50:36 +0100
committerErik Schilling <ablu.erikschilling@googlemail.com>2013-01-29 21:50:36 +0100
commit5c7bf62ca3204c6f8b91f1bd9178cb638e184f5a (patch)
tree2c48286401387ed2f50680d729f927bc9c0812ef /src/game-server/map.cpp
parentb1c1bff1153a86bd695287fbf3bfdf67dee3c819 (diff)
downloadmanaserv-5c7bf62ca3204c6f8b91f1bd9178cb638e184f5a.tar.gz
manaserv-5c7bf62ca3204c6f8b91f1bd9178cb638e184f5a.tar.bz2
manaserv-5c7bf62ca3204c6f8b91f1bd9178cb638e184f5a.tar.xz
manaserv-5c7bf62ca3204c6f8b91f1bd9178cb638e184f5a.zip
Silenced some eclipse warnings
Diffstat (limited to 'src/game-server/map.cpp')
-rw-r--r--src/game-server/map.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/game-server/map.cpp b/src/game-server/map.cpp
index e372f03d..b4e66e02 100644
--- a/src/game-server/map.cpp
+++ b/src/game-server/map.cpp
@@ -35,7 +35,11 @@ class PathInfo
{
public:
PathInfo()
- : whichList(0)
+ : Gcost(0)
+ , Hcost(0)
+ , whichList(0)
+ , parentX(0)
+ , parentY(0)
{}
int Gcost; /**< Cost from start to this location */