diff options
Diffstat (limited to 'src/settings.cpp')
-rw-r--r-- | src/settings.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/settings.cpp b/src/settings.cpp index 9af46b4be..767bfbb1a 100644 --- a/src/settings.cpp +++ b/src/settings.cpp @@ -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); |