summaryrefslogtreecommitdiff
path: root/src/game-server/map.cpp
diff options
context:
space:
mode:
authorStefan Dombrowski <stefan@uni-bonn.de>2011-01-10 20:19:06 +0100
committerStefan Dombrowski <stefan@uni-bonn.de>2011-01-10 20:19:06 +0100
commitd65dfcfa04a622effcd4cebdfaa5e713ca7627d8 (patch)
treeabcc3c0aa41ca2f860ee2e6d43491ff555fd0512 /src/game-server/map.cpp
parent7f712f1c9d00182660298d123d120444ef6a4996 (diff)
downloadmanaserv-d65dfcfa04a622effcd4cebdfaa5e713ca7627d8.tar.gz
manaserv-d65dfcfa04a622effcd4cebdfaa5e713ca7627d8.tar.bz2
manaserv-d65dfcfa04a622effcd4cebdfaa5e713ca7627d8.tar.xz
manaserv-d65dfcfa04a622effcd4cebdfaa5e713ca7627d8.zip
Removing default argument values from Map definition
The default argument values had no effect, because they are not in the declaration. Updating the codeblock project, because protocol.h had been renamed. Reviewed-by: Bertram
Diffstat (limited to 'src/game-server/map.cpp')
-rw-r--r--src/game-server/map.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/game-server/map.cpp b/src/game-server/map.cpp
index e1cebd0e..390649d9 100644
--- a/src/game-server/map.cpp
+++ b/src/game-server/map.cpp
@@ -45,8 +45,7 @@ bool Location::operator< (const Location &loc) const
return tile->Fcost > loc.tile->Fcost;
}
-Map::Map(int width = 0, int height = 0,
- int twidth = DEFAULT_TILE_LENGTH, int theight = DEFAULT_TILE_LENGTH):
+Map::Map(int width, int height, int twidth, int theight):
mWidth(width), mHeight(height),
mTileWidth(twidth), mTileHeight(theight),
onClosedList(1), onOpenList(2)