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

Make WW and WH static

This commit is contained in:
Gymnasiast
2020-05-09 17:05:01 +02:00
parent f8aeb70398
commit 6fd83fd006
26 changed files with 58 additions and 58 deletions

View File

@@ -260,9 +260,9 @@ enum WINDOW_OBJECT_LOAD_ERROR_WIDGET_IDX {
WIDX_DOWNLOAD_ALL
};
constexpr int32_t WW = 450;
constexpr int32_t WH = 400;
constexpr int32_t WW_LESS_PADDING = WW - 5;
static constexpr const int32_t WW = 450;
static constexpr const int32_t WH = 400;
static constexpr const int32_t WW_LESS_PADDING = WW - 5;
constexpr int32_t NAME_COL_LEFT = 4;
constexpr int32_t SOURCE_COL_LEFT = (WW_LESS_PADDING / 4) + 1;
constexpr int32_t TYPE_COL_LEFT = 5 * WW_LESS_PADDING / 8 + 1;