mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 14:08:37 +00:00
Silly macro removed
This commit is contained in:
parent
f0459e3891
commit
7a2802a5e0
12 changed files with 35 additions and 40 deletions
|
|
@ -94,10 +94,10 @@ ppu_error_code sys_memory_allocate_from_container(u32 size, u32 cid, u64 flags,
|
|||
if (!ct.take(size))
|
||||
{
|
||||
result = CELL_ENOMEM;
|
||||
return_ false;
|
||||
return false;
|
||||
}
|
||||
|
||||
return_ true;
|
||||
return true;
|
||||
});
|
||||
|
||||
if (!ct && !result)
|
||||
|
|
@ -214,10 +214,10 @@ ppu_error_code sys_memory_container_destroy(u32 cid)
|
|||
if (!ct.used.compare_and_swap_test(0, ct.size))
|
||||
{
|
||||
result = CELL_EBUSY;
|
||||
return_ false;
|
||||
return false;
|
||||
}
|
||||
|
||||
return_ true;
|
||||
return true;
|
||||
});
|
||||
|
||||
if (!ct && !result)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue