mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 22:19:02 +00:00
Clean vm::ps3 namespace use
This commit is contained in:
parent
76be7d40ac
commit
cce0ad0c35
176 changed files with 693 additions and 698 deletions
|
|
@ -151,7 +151,7 @@ Function* PPUTranslator::Translate(const ppu_function& info)
|
|||
const auto block = std::make_pair(info.addr, info.size);
|
||||
{
|
||||
// Optimize BLR (prefetch LR)
|
||||
if (vm::ps3::read32(vm::cast(block.first + block.second - 4)) == ppu_instructions::BLR())
|
||||
if (vm::read32(vm::cast(block.first + block.second - 4)) == ppu_instructions::BLR())
|
||||
{
|
||||
RegLoad(m_lr);
|
||||
}
|
||||
|
|
@ -176,7 +176,7 @@ Function* PPUTranslator::Translate(const ppu_function& info)
|
|||
m_rel = nullptr;
|
||||
}
|
||||
|
||||
const u32 op = vm::ps3::read32(vm::cast(m_addr + base));
|
||||
const u32 op = vm::read32(vm::cast(m_addr + base));
|
||||
(this->*(s_ppu_decoder.decode(op)))({op});
|
||||
|
||||
if (m_rel)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue