diff options
author | Bertram <bertram@cegetel.net> | 2010-02-09 02:07:14 +0100 |
---|---|---|
committer | Bertram <bertram@cegetel.net> | 2010-02-09 02:07:14 +0100 |
commit | aa0325fac0f16ced4ac710b5126da5bc5c2af441 (patch) | |
tree | d00a3f3c3d3cf09ea76886938bb47a3bee57f110 /src/map.cpp | |
parent | 56f501c8148b1061a02547d37b20eeeeb64029db (diff) | |
download | mana-aa0325fac0f16ced4ac710b5126da5bc5c2af441.tar.gz mana-aa0325fac0f16ced4ac710b5126da5bc5c2af441.tar.bz2 mana-aa0325fac0f16ced4ac710b5126da5bc5c2af441.tar.xz mana-aa0325fac0f16ced4ac710b5126da5bc5c2af441.zip |
Separated fallback defaults for tile width and height.
Diffstat (limited to 'src/map.cpp')
-rw-r--r-- | src/map.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map.cpp b/src/map.cpp index 910c005a..c18d38ba 100644 --- a/src/map.cpp +++ b/src/map.cpp @@ -43,7 +43,8 @@ extern volatile int tick_time; /** * The used side-length for tiles */ -const int DEFAULT_TILE_SIDE_LENGTH = 32; +const int DEFAULT_TILE_WIDTH = 32; +const int DEFAULT_TILE_HEIGHT = 32; /** * A location on a tile map. Used for pathfinding, open list. |