mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-13 02:08:49 +12:00
Clarify an assignment is not a comparison.
This commit is contained in:
parent
563aa2d2ca
commit
f2d6bf73ca
2 changed files with 6 additions and 6 deletions
|
@ -681,8 +681,8 @@ int32_t cellGcmReserveIoMapSize(const u32 size)
|
|||
|
||||
int32_t cellGcmUnmapEaIoAddress(u64 ea)
|
||||
{
|
||||
u32 size;
|
||||
if (size = Memory.RSXIOMem.UnmapRealAddress(ea))
|
||||
u32 size = Memory.RSXIOMem.UnmapRealAddress(ea);
|
||||
if (size)
|
||||
{
|
||||
u64 io;
|
||||
ea = ea >> 20;
|
||||
|
@ -704,8 +704,8 @@ int32_t cellGcmUnmapEaIoAddress(u64 ea)
|
|||
|
||||
int32_t cellGcmUnmapIoAddress(u64 io)
|
||||
{
|
||||
u32 size;
|
||||
if (size = Memory.RSXIOMem.UnmapAddress(io))
|
||||
u32 size = Memory.RSXIOMem.UnmapAddress(io);
|
||||
if (size)
|
||||
{
|
||||
u64 ea;
|
||||
io = io >> 20;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue