(svn r19064) -Feature: Allow to select different land colours for the smallmap (reworked by Alberth).

This commit is contained in:
terkhen
2010-02-08 23:46:35 +00:00
parent 3c627747d3
commit 52312ea17f
7 changed files with 110 additions and 17 deletions

View File

@@ -63,6 +63,7 @@
#include "ship.h"
#include "company_base.h"
#include "engine_base.h"
#include "smallmap_gui.h"
#include "void_map.h"
#include "station_base.h"
@@ -658,6 +659,18 @@ static bool RedrawScreen(int32 p1)
return true;
}
/**
* Redraw the smallmap after a colour scheme change.
* @param p1 Callback parameter.
* @return Always true.
*/
static bool RedrawSmallmap(int32 p1)
{
BuildLandLegend();
SetWindowClassesDirty(WC_SMALLMAP);
return true;
}
static bool InvalidateDetailsWindow(int32 p1)
{
SetWindowClassesDirty(WC_VEHICLE_DETAILS);