1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 18:53:28 +01:00

atomic.hpp: fix typo

This commit is contained in:
Nekotekina 2019-10-23 13:11:32 +03:00
parent 050e5b4aec
commit ec1ea466fd

View File

@ -274,7 +274,7 @@ static u32 sema_alloc()
#ifdef USE_POSIX
// Initialize semaphore (should be very fast)
sem_init(&s_sema_list[id], 0, 0);
#elif defined(_WIN32) | defined(USE_FUTEX)
#elif defined(_WIN32) || defined(USE_FUTEX)
// Do nothing
#else
if (!s_sema_list[id])