mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-14 10:09:11 +00:00
Fix b1fb209
: build failure due to removed parameter
This commit is contained in:
@@ -1625,7 +1625,7 @@ static void FormatString(StringBuilder &builder, const char *str_arg, StringPara
|
||||
}
|
||||
|
||||
case SCC_COLOUR: { // {COLOUR}
|
||||
StringControlCode scc = (StringControlCode)(SCC_BLUE + args.GetInt32(SCC_COLOUR));
|
||||
StringControlCode scc = (StringControlCode)(SCC_BLUE + args.GetInt32());
|
||||
if (IsInsideMM(scc, SCC_BLUE, SCC_COLOUR)) builder.Utf8Encode(scc);
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user