summaryrefslogtreecommitdiff
path: root/src/heightmap.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-03-12 14:21:18 +0000
committerrubidium <rubidium@openttd.org>2009-03-12 14:21:18 +0000
commit3d780608a26c2461e493be52a1fd82122c23820d (patch)
treefae7fdfd90ad3dbe2c11215221506c3882556931 /src/heightmap.cpp
parentcef662825b27f5c934efeadd6112888e8b97a061 (diff)
downloadopenttd-3d780608a26c2461e493be52a1fd82122c23820d.tar.xz
(svn r15685) -Fix [FS#2720]: do not crash when someone substitutes the "map generation" sprites with garbage.
Diffstat (limited to 'src/heightmap.cpp')
-rw-r--r--src/heightmap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/heightmap.cpp b/src/heightmap.cpp
index 36e962dde..04207cd2e 100644
--- a/src/heightmap.cpp
+++ b/src/heightmap.cpp
@@ -352,7 +352,7 @@ static void GrayscaleToMapHeights(uint img_width, uint img_height, byte *map)
* This function takes care of the fact that land in OpenTTD can never differ
* more than 1 in height
*/
-static void FixSlopes()
+void FixSlopes()
{
uint width, height;
int row, col;