mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
PowerPC: Remove rPS macro.
This commit is contained in:
@ -414,7 +414,7 @@ static void ReadRegister()
|
||||
}
|
||||
else if (id >= 32 && id < 64)
|
||||
{
|
||||
wbe64hex(reply, rPS(id - 32).PS0AsU64());
|
||||
wbe64hex(reply, PowerPC::ppcState.ps[id - 32].PS0AsU64());
|
||||
}
|
||||
else if (id >= 71 && id < 87)
|
||||
{
|
||||
@ -626,7 +626,7 @@ static void WriteRegister()
|
||||
}
|
||||
else if (id >= 32 && id < 64)
|
||||
{
|
||||
rPS(id - 32).SetPS0(re64hex(bufptr));
|
||||
PowerPC::ppcState.ps[id - 32].SetPS0(re64hex(bufptr));
|
||||
}
|
||||
else if (id >= 71 && id < 87)
|
||||
{
|
||||
|
Reference in New Issue
Block a user