diff options
author | George Marques <george@gmarqu.es> | 2016-11-02 18:57:35 -0200 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2016-11-03 14:51:08 -0200 |
commit | b113c7b7a3e63581ae268b0ae7f827d55e381b82 (patch) | |
tree | 631a71894dc166279b331aa832af427580047ac1 /drivers/windows/mutex_windows.cpp | |
parent | fb5a73a39fb7e6e5924db362062cba628525028a (diff) | |
download | redot-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.cpp | 2 |
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 ); |