1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-27 08:45:00 +01:00

Clang-format guards for static data

This guards most of the hardcoded data from clang-format.

[ci skip]
This commit is contained in:
Michał Janiszewski
2018-01-10 16:14:36 +01:00
committed by Michał Janiszewski
parent fbb8185284
commit 5a8cfb16c8
35 changed files with 73 additions and 1 deletions

View File

@@ -99,6 +99,7 @@ struct WindowThemeDesc
#pragma region Window Theme Descriptors
// clang-format off
#define COLOURS_1(c0) 1, { { (c0), 0, 0, 0, 0, 0 } }
#define COLOURS_2(c0, c1) 2, { { (c0), (c1), 0, 0, 0, 0 } }
#define COLOURS_3(c0, c1, c2) 3, { { (c0), (c1), (c2), 0, 0, 0 } }
@@ -230,6 +231,7 @@ static const PredefinedTheme PredefinedThemes[] = {
{ &PredefinedThemeRCT1, STR_TITLE_SEQUENCE_RCT1 },
{ &PredefinedThemeRCT2, STR_TITLE_SEQUENCE_RCT2 }
};
// clang-format on
#pragma endregion