1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-18 04:23:20 +01:00

Rename snake_case functions from localisation folder

This commit is contained in:
Michael Steenbeek
2023-01-17 00:12:35 +01:00
committed by GitHub
parent 8504c8d05e
commit b4480b344e
90 changed files with 335 additions and 336 deletions

View File

@@ -1029,7 +1029,7 @@ static int32_t ConsoleCommandSet(InteractiveConsole& console, const arguments_t&
if (invalidArgs)
{
console.WriteLine(language_get_string(STR_INVALID_CLIMATE_ID));
console.WriteLine(LanguageGetString(STR_INVALID_CLIMATE_ID));
}
else
{
@@ -1484,7 +1484,7 @@ static int32_t ConsoleCommandForceDate([[maybe_unused]] InteractiveConsole& cons
}
}
date_set(year, month, day);
DateSet(year, month, day);
WindowInvalidateByClass(WindowClass::BottomToolbar);
return 1;