diff options
Diffstat (limited to 'src/game/Map.h')
-rw-r--r-- | src/game/Map.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/game/Map.h b/src/game/Map.h index fb921309cba..10d8c914cc2 100644 --- a/src/game/Map.h +++ b/src/game/Map.h @@ -75,7 +75,9 @@ typedef struct uint16 area_flag[16][16]; uint8 terrain_type[16][16]; float liquid_level[128][128]; - float Z[MAP_RESOLUTION][MAP_RESOLUTION]; + float v9[16 * 8 + 1][16 * 8 + 1]; + float v8[16 * 8][16 * 8]; + //float Z[MAP_RESOLUTION][MAP_RESOLUTION]; }GridMap; struct CreatureMover |