1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-26 16:24:35 +01:00

Fix FileWatcher header file

This commit is contained in:
Ted John
2020-04-26 13:55:12 +01:00
parent 2d43ac5936
commit 51ed760409

View File

@@ -25,10 +25,10 @@ class FileWatcher
{
private:
std::thread _watchThread;
#ifdef _WIN32
#if defined(_WIN32)
std::string _path;
HANDLE _directoryHandle{};
#else
#elif defined(__linux__)
struct FileDescriptor
{
int Fd = -1;