summaryrefslogtreecommitdiffstats
path: root/drivers/windows/mutex_windows.cpp
diff options
context:
space:
mode:
authorGeorge Marques <george@gmarqu.es>2016-11-02 18:57:35 -0200
committerGeorge Marques <george@gmarqu.es>2016-11-03 14:51:08 -0200
commitb113c7b7a3e63581ae268b0ae7f827d55e381b82 (patch)
tree631a71894dc166279b331aa832af427580047ac1 /drivers/windows/mutex_windows.cpp
parentfb5a73a39fb7e6e5924db362062cba628525028a (diff)
downloadredot-engine-b113c7b7a3e63581ae268b0ae7f827d55e381b82.tar.gz
Rename WINRT_ENABLED to UWP_ENABLED
Diffstat (limited to 'drivers/windows/mutex_windows.cpp')
-rw-r--r--drivers/windows/mutex_windows.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/windows/mutex_windows.cpp b/drivers/windows/mutex_windows.cpp
index f63415d0f8..f533626c30 100644
--- a/drivers/windows/mutex_windows.cpp
+++ b/drivers/windows/mutex_windows.cpp
@@ -81,7 +81,7 @@ MutexWindows::MutexWindows() {
#ifdef WINDOWS_USE_MUTEX
mutex = CreateMutex( NULL, FALSE, NULL );
#else
- #ifdef WINRT_ENABLED
+ #ifdef UWP_ENABLED
InitializeCriticalSectionEx( &mutex, 0, 0 );
#else
InitializeCriticalSection( &mutex );