mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 16:31:28 +12:00
Formatting changes
This commit is contained in:
parent
36a134798b
commit
ec2e53dc6b
9 changed files with 89 additions and 105 deletions
|
@ -2505,7 +2505,7 @@ u32 RSXThread::ReadIO32(u32 addr)
|
|||
u32 value;
|
||||
if (!Memory.RSXIOMem.Read32(addr, &value))
|
||||
{
|
||||
throw fmt::Format("%s(rsxio_addr=0x%x): RSXIO memory not mapped", __FUNCTION__, addr);
|
||||
throw fmt::Format("%s(addr=0x%x): RSXIO memory not mapped", __FUNCTION__, addr);
|
||||
}
|
||||
return value;
|
||||
}
|
||||
|
@ -2514,6 +2514,6 @@ void RSXThread::WriteIO32(u32 addr, u32 value)
|
|||
{
|
||||
if (!Memory.RSXIOMem.Write32(addr, value))
|
||||
{
|
||||
throw fmt::Format("%s(rsxio_addr=0x%x): RSXIO memory not mapped", __FUNCTION__, addr);
|
||||
throw fmt::Format("%s(addr=0x%x): RSXIO memory not mapped", __FUNCTION__, addr);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue