From 7215864558600f2aaf4d814ca65b2433709582f5 Mon Sep 17 00:00:00 2001 From: Damiano <54273858+ienapliss@users.noreply.github.com> Date: Mon, 27 Jan 2020 00:14:30 +0100 Subject: [PATCH] for mingw --- src/nvthread/Event.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/nvthread/Event.cpp b/src/nvthread/Event.cpp index b6d8c15..de5c271 100644 --- a/src/nvthread/Event.cpp +++ b/src/nvthread/Event.cpp @@ -2,15 +2,15 @@ #include "Event.h" -#if NV_OS_WIN32 -#include "Win32.h" -#elif NV_OS_USE_PTHREAD +#if NV_OS_USE_PTHREAD #include +#elif NV_OS_WIN32 +#include "Win32.h" #endif using namespace nv; -#if NV_OS_WIN32 +#if NV_OS_WIN32 && !NV_OS_MINGW struct Event::Private { HANDLE handle;