From 9f3254b72a0fbc5ed6943177fa41bd1e3fae5c64 Mon Sep 17 00:00:00 2001 From: Rubidium Date: Tue, 20 Jun 2023 20:28:43 +0200 Subject: [PATCH] Fix b1fb209: build failure due to removed parameter --- src/strings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strings.cpp b/src/strings.cpp index 095008feb3..5dbeccd04f 100644 --- a/src/strings.cpp +++ b/src/strings.cpp @@ -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; }