1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 13:33:02 +01:00

Correct formatting up to the management folder

I went over the commits ab7f22f..8726712 (bulk format commits for game actions to management inclusive) and corrected all mistakes I found. Most of them have to do with arrays missing trailing commas, making clang-format indent the entire array or not add breaks between the values.
This commit is contained in:
Hielke Morsink
2018-06-25 23:54:31 +02:00
parent 6fd9843dc3
commit 472320d8f3
14 changed files with 123 additions and 61 deletions

View File

@@ -1067,8 +1067,11 @@ static int32_t cc_load_object(InteractiveConsole& console, const utf8** argv, in
static int32_t cc_object_count(InteractiveConsole& console, [[maybe_unused]] const utf8** argv, [[maybe_unused]] int32_t argc)
{
const utf8* object_type_names[] = { "Rides", "Small scenery", "Large scenery", "Walls", "Banners",
"Paths", "Path Additions", "Scenery groups", "Park entrances", "Water" };
const utf8* object_type_names[] = {
"Rides", "Small scenery", "Large scenery", "Walls", "Banners",
"Paths", "Path Additions", "Scenery groups", "Park entrances", "Water",
};
for (int32_t i = 0; i < 10; i++)
{
int32_t entryGroupIndex = 0;