From f94eb286f294fc44aa2cdc012ff5a94993b7eabe Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Mon, 5 Apr 2021 20:04:53 +0100 Subject: [PATCH] Fix missing MinGW thread includes --- src/video/video_driver.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/video/video_driver.hpp b/src/video/video_driver.hpp index 6b56a38139..970d862766 100644 --- a/src/video/video_driver.hpp +++ b/src/video/video_driver.hpp @@ -22,6 +22,11 @@ #include #include #include +#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 _resolutions;