mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
Silly macro removed
This commit is contained in:
parent
f0459e3891
commit
7a2802a5e0
12 changed files with 35 additions and 40 deletions
|
|
@ -149,10 +149,10 @@ ppu_error_code sys_mmapper_allocate_shared_memory_from_container(u64 unk, u32 si
|
|||
if (!ct.take(size))
|
||||
{
|
||||
result = CELL_ENOMEM;
|
||||
return_ false;
|
||||
return false;
|
||||
}
|
||||
|
||||
return_ true;
|
||||
return true;
|
||||
});
|
||||
|
||||
if (!ct && !result)
|
||||
|
|
@ -210,10 +210,10 @@ ppu_error_code sys_mmapper_free_shared_memory(u32 mem_id)
|
|||
if (mem.addr.compare_and_swap_test(0, -1))
|
||||
{
|
||||
result = CELL_EBUSY;
|
||||
return_ false;
|
||||
return false;
|
||||
}
|
||||
|
||||
return_ true;
|
||||
return true;
|
||||
});
|
||||
|
||||
if (!mem && !result)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue