1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-24 07:14:31 +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

@@ -69,12 +69,12 @@ enum WINDOW_WATER_WIDGET_IDX {
WIDX_CANCEL
};
constexpr int32_t WW = 200;
constexpr int32_t WH = 120;
static constexpr const int32_t WW = 200;
static constexpr const int32_t WH = 120;
constexpr int32_t BY = 32;
constexpr int32_t BY2 = 70;
constexpr int32_t WS = 16;
constexpr int32_t WHA = (WW-WS*2)/2;
static constexpr const int32_t WHA = (WW-WS*2)/2;
static bool _window_title_command_editor_insert;
static int32_t _window_title_command_editor_index;