diff options
Diffstat (limited to 'src/game/Map.h')
-rw-r--r-- | src/game/Map.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/Map.h b/src/game/Map.h index 92274932362..3c227b47e88 100644 --- a/src/game/Map.h +++ b/src/game/Map.h @@ -75,7 +75,8 @@ 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[MAP_RESOLUTION + 1][MAP_RESOLUTION + 1]; + float v8[MAP_RESOLUTION][MAP_RESOLUTION]; }GridMap; struct CreatureMover |