From a72ef08cddf245cd5dcf69535f5fd48fe3960108 Mon Sep 17 00:00:00 2001 From: Gymnasiast Date: Thu, 16 Oct 2025 22:35:13 +0200 Subject: [PATCH] Rename unused defines in Theme.cpp --- src/openrct2-ui/interface/Theme.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/openrct2-ui/interface/Theme.cpp b/src/openrct2-ui/interface/Theme.cpp index 45dc7a87a9..a04f2d5be3 100644 --- a/src/openrct2-ui/interface/Theme.cpp +++ b/src/openrct2-ui/interface/Theme.cpp @@ -110,13 +110,9 @@ namespace OpenRCT2::Ui #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 } } #define COLOURS_4(c0, c1, c2, c3) 4, { { (c0), (c1), (c2), (c3), 0, 0 } } - #define COLOURS_5(c0, c1, c2, c3, c4) 5, { { (c0), (c1), (c2), (c3), (c4), 0 } } - #define COLOURS_6(c0, c1, c2, c3, c4, c5) 6, { { (c0), (c1), (c2), (c3), (c4), (c5) } } #define THEME_DEF_END { WindowClass::null, { 0, 0, 0, 0, 0, 0 } } - #define TWINDOW(window_class, window_name, window_string_id, theme) { window_class, window_name, window_string_id, theme } - static constexpr ColourWithFlags opaque(colour_t colour) { return ColourWithFlags{ colour };