Fix b1fb209: build failure due to removed parameter

This commit is contained in:
Rubidium 2023-06-20 20:28:43 +02:00 committed by rubidium42
parent 4d0369ea9c
commit 9f3254b72a
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}