mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 23:41:26 +12:00
Compilation fix
This commit is contained in:
parent
883885dc0b
commit
bba74b9056
1 changed files with 2 additions and 1 deletions
|
@ -24,7 +24,8 @@ int cellSyncMutexInitialize(mem_ptr_t<CellSyncMutex> mutex)
|
||||||
}
|
}
|
||||||
|
|
||||||
// prx: set zero and sync
|
// prx: set zero and sync
|
||||||
InterlockedExchange(&mutex->m_data(), 0);
|
mutex->m_data = 0;
|
||||||
|
InterlockedCompareExchange(&mutex->m_data(), 0, 0);
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue