mirror of https://github.com/OpenTTD/OpenTTD
Fix: Invalidate cached vehicle colourmaps when changing liveries setting. (#9006)
parent
5644c00482
commit
31c5b8fe0f
|
@ -63,6 +63,7 @@
|
||||||
#include "roadveh.h"
|
#include "roadveh.h"
|
||||||
#include "fios.h"
|
#include "fios.h"
|
||||||
#include "strings_func.h"
|
#include "strings_func.h"
|
||||||
|
#include "vehicle_func.h"
|
||||||
|
|
||||||
#include "void_map.h"
|
#include "void_map.h"
|
||||||
#include "station_base.h"
|
#include "station_base.h"
|
||||||
|
@ -1153,6 +1154,7 @@ static bool InvalidateNewGRFChangeWindows(int32 p1)
|
||||||
static bool InvalidateCompanyLiveryWindow(int32 p1)
|
static bool InvalidateCompanyLiveryWindow(int32 p1)
|
||||||
{
|
{
|
||||||
InvalidateWindowClassesData(WC_COMPANY_COLOUR, -1);
|
InvalidateWindowClassesData(WC_COMPANY_COLOUR, -1);
|
||||||
|
ResetVehicleColourMap();
|
||||||
return RedrawScreen(p1);
|
return RedrawScreen(p1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue