HLE: Rename namespaces to match move & fix initialization order

This commit is contained in:
Yuri Kunde Schlesner 2014-12-14 05:55:11 -02:00
parent c72ccfa6db
commit ca67bb7945
10 changed files with 43 additions and 49 deletions

View file

@ -23,10 +23,10 @@ void Init(EmuWindow* emu_window) {
Core::Init();
Memory::Init();
HW::Init();
Kernel::Init();
HLE::Init();
CoreTiming::Init();
VideoCore::Init(emu_window);
Kernel::Init();
}
void RunLoopFor(int cycles) {
@ -37,13 +37,13 @@ void RunLoopUntil(u64 global_cycles) {
}
void Shutdown() {
Core::Shutdown();
Memory::Shutdown();
HW::Shutdown();
HLE::Shutdown();
CoreTiming::Shutdown();
VideoCore::Shutdown();
CoreTiming::Shutdown();
HLE::Shutdown();
Kernel::Shutdown();
HW::Shutdown();
Memory::Shutdown();
Core::Shutdown();
}
} // namespace