diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2016-11-06 12:03:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-06 12:03:10 +0100 |
commit | be4eff1d8b0b87f81be56d8cf166bcc209205638 (patch) | |
tree | 437a4c3495753de1528653a82a5bd094193061e7 /drivers/windows/mutex_windows.cpp | |
parent | 20a33e809e5968f915021d162db955e207c8e7b7 (diff) | |
parent | 411faaa6f478f837aa40893eaadf67e2b5d57cec (diff) |
Merge pull request #7019 from vnen/rename-winrt-uwp
Rename WinRT platform to UWP
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 ); |