diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2022-01-21 12:48:19 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2022-01-21 12:48:19 -0500 |
commit | 3d0326106ed683911da66eee1bf94becadc7a2db (patch) | |
tree | 3b0901917605374b05656eb14f8e06744765af63 /src/fieldmap.c | |
parent | fb81d9ad4a19b7d653e44787e5647bda794757fd (diff) |
Z coord / height -> elevation
Diffstat (limited to 'src/fieldmap.c')
-rw-r--r-- | src/fieldmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fieldmap.c b/src/fieldmap.c index 8be4206e2..4dbf981cf 100644 --- a/src/fieldmap.c +++ b/src/fieldmap.c @@ -342,7 +342,7 @@ static void FillEastConnection(struct MapHeader const *mapHeader, struct MapHead } } -u8 MapGridGetZCoordAt(int x, int y) +u8 MapGridGetElevationAt(int x, int y) { u16 block = GetMapGridBlockAt(x, y); |