1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-17 12:03:07 +01:00

Rename snake_case functions in openrct2/src folder

Co-authored-by: duncanspumpkin <duncans_pumpkin@hotmail.co.uk>
This commit is contained in:
Hielke Morsink
2023-01-17 13:24:51 +01:00
committed by GitHub
parent bf5f7e8e71
commit 6b7dc8fcdb
227 changed files with 1040 additions and 1040 deletions

View File

@@ -1380,7 +1380,7 @@ static int32_t ConsoleCommandOpen(InteractiveConsole& console, const arguments_t
static int32_t ConsoleCommandRemoveUnusedObjects(InteractiveConsole& console, [[maybe_unused]] const arguments_t& argv)
{
int32_t result = editor_remove_unused_objects();
int32_t result = EditorRemoveUnusedObjects();
console.WriteFormatLine("%d unused object entries have been removed.", result);
return 0;
}
@@ -1530,11 +1530,11 @@ static int32_t ConsoleCommandSavePark([[maybe_unused]] InteractiveConsole& conso
{
if (argv.size() < 1)
{
save_game_cmd();
SaveGameCmd();
}
else
{
save_game_cmd(argv[0].c_str());
SaveGameCmd(argv[0].c_str());
}
return 1;
}