From e5696e6b5a0293dabf11c8cb2087c38ea1327d27 Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Sat, 12 Jun 2021 02:26:34 +0100 Subject: [PATCH] Fix owner legend colours when gui.starting_colour setting used --- src/openttd.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/openttd.cpp b/src/openttd.cpp index bdc8d26f9d..9909c5e719 100644 --- a/src/openttd.cpp +++ b/src/openttd.cpp @@ -1045,6 +1045,7 @@ static void MakeNewGameDone() c->colour = _settings_client.gui.starting_colour; ResetCompanyLivery(c); _company_colours[c->index] = (Colours)c->colour; + BuildOwnerLegend(); } IConsoleCmdExec("exec scripts/game_start.scr 0");