mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-13 07:10:57 +00:00
Fix missing MinGW thread includes
This commit is contained in:
parent
2a13c8623c
commit
f94eb286f2
@ -22,6 +22,11 @@
|
||||
#include <mutex>
|
||||
#include <thread>
|
||||
#include <vector>
|
||||
#if defined(__MINGW32__)
|
||||
#include "../3rdparty/mingw-std-threads/mingw.mutex.h"
|
||||
#include "../3rdparty/mingw-std-threads/mingw.condition_variable.h"
|
||||
#include "../3rdparty/mingw-std-threads/mingw.thread.h"
|
||||
#endif
|
||||
|
||||
extern std::string _ini_videodriver;
|
||||
extern std::vector<Dimension> _resolutions;
|
||||
|
Loading…
Reference in New Issue
Block a user