summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeterN <peter1138@openttd.org>2021-04-11 13:30:13 +0100
committerGitHub <noreply@github.com>2021-04-11 14:30:13 +0200
commit31c5b8fe0f9c070143625478f7120e0c9c2332fd (patch)
tree9e737c00a0a98862266d010dc5953066cde712b6 /src
parent5644c00482ce2ca43e0f46f3ed40993599bb5707 (diff)
downloadopenttd-31c5b8fe0f9c070143625478f7120e0c9c2332fd.tar.xz
Fix: Invalidate cached vehicle colourmaps when changing liveries setting. (#9006)
Diffstat (limited to 'src')
-rw-r--r--src/settings.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/settings.cpp b/src/settings.cpp
index 3448ce4b3..fdb26368c 100644
--- a/src/settings.cpp
+++ b/src/settings.cpp
@@ -63,6 +63,7 @@
#include "roadveh.h"
#include "fios.h"
#include "strings_func.h"
+#include "vehicle_func.h"
#include "void_map.h"
#include "station_base.h"
@@ -1153,6 +1154,7 @@ static bool InvalidateNewGRFChangeWindows(int32 p1)
static bool InvalidateCompanyLiveryWindow(int32 p1)
{
InvalidateWindowClassesData(WC_COMPANY_COLOUR, -1);
+ ResetVehicleColourMap();
return RedrawScreen(p1);
}