1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-17 12:03:07 +01:00

Fix compilation failure due to unused vars.

Compilation fails due to warnings-turned-errors.
This commit is contained in:
Aaron van Geffen
2020-06-11 15:22:06 +02:00
parent 231b704fa7
commit 3090e2af79
2 changed files with 2 additions and 1 deletions

View File

@@ -33,7 +33,6 @@
static constexpr const rct_string_id WINDOW_TITLE = STR_STRINGID;
static constexpr const int32_t WH = 224;
static constexpr const int32_t WW = 230;
// clang-format off
enum WINDOW_PARK_PAGE {

View File

@@ -59,7 +59,9 @@ public:
~FileWatcher();
private:
#if defined(_WIN32) || defined(__linux__)
bool _finished{};
#endif
void WatchDirectory();
};