From 1d27ae9bdaa056b37de19233354ee76b43f0aad4 Mon Sep 17 00:00:00 2001 From: rubidium Date: Thu, 23 Oct 2014 10:50:34 +0000 Subject: (svn r27036) -Fix [FS#6148] (r26928): crash when changing smallmap colour when the smallmap window has not been opened yet --- src/smallmap_gui.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') diff --git a/src/smallmap_gui.cpp b/src/smallmap_gui.cpp index 18c0fc25a..dea0caa39 100644 --- a/src/smallmap_gui.cpp +++ b/src/smallmap_gui.cpp @@ -279,6 +279,9 @@ static SmallMapColourScheme _heightmap_schemes[] = { */ void BuildLandLegend() { + /* The smallmap window has never been initialized, so no need to change the legend. */ + if (_heightmap_schemes[0].height_colours == NULL) return; + /* * The general idea of this function is to fill the legend with an appropriate evenly spaced * selection of height levels. All entries with STR_TINY_BLACK_HEIGHT are reserved for this. -- cgit v1.2.3-54-g00ecf