HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)
This commit is contained in:
parent
5365ca157d
commit
c95972275e
13 changed files with 239 additions and 239 deletions
|
@ -122,7 +122,7 @@ bool ReleaseMutex(Mutex* mutex) {
|
|||
Result ReleaseMutex(Handle handle) {
|
||||
Mutex* mutex = Kernel::g_object_pool.GetFast<Mutex>(handle);
|
||||
|
||||
_assert_msg_(KERNEL, (mutex != NULL), "ReleaseMutex tried to release a NULL mutex!");
|
||||
_assert_msg_(KERNEL, (mutex != nullptr), "ReleaseMutex tried to release a nullptr mutex!");
|
||||
|
||||
if (!ReleaseMutex(mutex)) {
|
||||
return -1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue