summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2017-05-14 16:08:19 +0100
committer smf- <smf-@users.noreply.github.com>2017-05-14 16:09:24 +0100
commitaca23ef3bae2f9eeb290ed5bb390e3b7265d1423 (patch)
tree9951bc58117d0434315f9d73f028d83822d5604c
parentc3b10caf4e83135756ce400ec39d1b10b7d97b93 (diff)
reordered #include again for latest mingw64 includes (nw)
-rw-r--r--src/osd/osdsync.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/osd/osdsync.cpp b/src/osd/osdsync.cpp
index 12253f2acbd..44218593fd8 100644
--- a/src/osd/osdsync.cpp
+++ b/src/osd/osdsync.cpp
@@ -5,6 +5,11 @@
// osdsync.c - OSD core work item functions
//
//============================================================
+#include <mutex>
+#include <atomic>
+#include <thread>
+#include <vector>
+#include <algorithm>
#if defined(OSD_WINDOWS) || defined(SDLMAME_WIN32)
// standard windows headers
#include <windows.h>
@@ -16,11 +21,6 @@
#include <stdint.h>
#endif
#endif
-#include <mutex>
-#include <atomic>
-#include <thread>
-#include <vector>
-#include <algorithm>
// MAME headers
#include "osdcore.h"
#include "osdsync.h"