diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2022-03-30 08:23:15 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2022-03-30 08:23:15 +0200 |
| commit | 06056a9b5e900f67702c509ce1ba2e2351357fb7 (patch) | |
| tree | e83dd88785187e8291628585ad622df452a32909 /src/terrain | |
| parent | cbb2dc1a0a7d28cd838b912742493a90f4278344 (diff) | |
| download | jancity-06056a9b5e900f67702c509ce1ba2e2351357fb7.tar.gz | |
Rename MAP_{X|Y} to MAP_{W|H}
Diffstat (limited to 'src/terrain')
| -rw-r--r-- | src/terrain/inc/terrain.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/terrain/inc/terrain.h b/src/terrain/inc/terrain.h index d5f4e12..508fe25 100644 --- a/src/terrain/inc/terrain.h +++ b/src/terrain/inc/terrain.h @@ -14,8 +14,8 @@ enum { MAP_TILES = 64, TERRAIN_SZ = 32, - MAP_X = MAP_TILES * TERRAIN_SZ, - MAP_Y = MAP_TILES * TERRAIN_SZ + MAP_W = MAP_TILES * TERRAIN_SZ, + MAP_H = MAP_TILES * TERRAIN_SZ }; enum terrain_type |
