reordered #include again for latest mingw64 includes (nw)

This commit is contained in:
smf- 2017-05-14 16:08:19 +01:00
parent c3b10caf4e
commit aca23ef3ba

View File

@ -5,6 +5,11 @@
// osdsync.c - OSD core work item functions // osdsync.c - OSD core work item functions
// //
//============================================================ //============================================================
#include <mutex>
#include <atomic>
#include <thread>
#include <vector>
#include <algorithm>
#if defined(OSD_WINDOWS) || defined(SDLMAME_WIN32) #if defined(OSD_WINDOWS) || defined(SDLMAME_WIN32)
// standard windows headers // standard windows headers
#include <windows.h> #include <windows.h>
@ -16,11 +21,6 @@
#include <stdint.h> #include <stdint.h>
#endif #endif
#endif #endif
#include <mutex>
#include <atomic>
#include <thread>
#include <vector>
#include <algorithm>
// MAME headers // MAME headers
#include "osdcore.h" #include "osdcore.h"
#include "osdsync.h" #include "osdsync.h"