mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-24 05:49:58 +00:00
RegCacheFPU
This commit is contained in:
parent
758cbd748e
commit
ecbeee5225
@ -897,9 +897,9 @@ OpArg FPURegCache::GetDefaultLocation(int reg) const {
|
||||
} else if (reg < 32 + 128) {
|
||||
// Here, RIP has the advantage so let's use it when possible
|
||||
if (useRip_) {
|
||||
return M(&mips->v[voffset[reg - 32]]);
|
||||
return M(&mips->v[voffset[reg - 32]]); // rip accessible
|
||||
} else {
|
||||
return MIPSSTATE_VAR(v[voffset[reg - 32]]);
|
||||
return MIPSSTATE_VAR(v[voffset[reg - 32]]); // rip accessible
|
||||
}
|
||||
} else {
|
||||
if (useRip_) {
|
||||
|
Loading…
Reference in New Issue
Block a user