diff options
author | DiSlord <none@none> | 2009-02-20 16:12:47 -0600 |
---|---|---|
committer | DiSlord <none@none> | 2009-02-20 16:12:47 -0600 |
commit | f1c13a7c79f7c2eb5d1d08d3e4724a29d383538c (patch) | |
tree | fd76047eef95e93215476c4d6b6f2e988a89185d /src/game/Map.h | |
parent | 956c828bf56f06b5c25ff20d760ad41be2642a51 (diff) |
fix for height maps
--HG--
branch : trunk
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 |