Codechange: Use correct char type in RemapNewGRFStringControlCode. (#13173)

This commit is contained in:
Peter Nelson
2024-12-18 12:58:23 +00:00
committed by GitHub
parent e3e3cb13c6
commit c4424aa894
2 changed files with 2 additions and 2 deletions

View File

@@ -825,7 +825,7 @@ void StopTextRefStackUsage()
* @param modify_parameters When true, modify the OpenTTD string formatting parameters.
* @return the string control code to "execute" now
*/
uint RemapNewGRFStringControlCode(uint scc, const char **str, StringParameters &parameters, bool modify_parameters)
char32_t RemapNewGRFStringControlCode(char32_t scc, const char **str, StringParameters &parameters, bool modify_parameters)
{
switch (scc) {
default: break;