Clean vm::ps3 namespace use

This commit is contained in:
Nekotekina 2018-02-09 17:49:37 +03:00
parent 76be7d40ac
commit cce0ad0c35
176 changed files with 693 additions and 698 deletions

View file

@ -671,7 +671,7 @@ void Emulator::Load(bool add_only)
m_state = system_state::ready;
GetCallbacks().on_ready();
vm::ps3::init();
vm::init();
if (argv.empty())
{
@ -709,7 +709,7 @@ void Emulator::Load(bool add_only)
// PPU PRX (experimental)
m_state = system_state::ready;
GetCallbacks().on_ready();
vm::ps3::init();
vm::init();
ppu_load_prx(ppu_prx, m_path);
}
else if (spu_exec.open(elf_file) == elf_error::ok)
@ -717,7 +717,7 @@ void Emulator::Load(bool add_only)
// SPU executable (experimental)
m_state = system_state::ready;
GetCallbacks().on_ready();
vm::ps3::init();
vm::init();
spu_load_exec(spu_exec);
}
else