HLE: Rename namespaces to match move & fix initialization order
This commit is contained in:
parent
c72ccfa6db
commit
ca67bb7945
10 changed files with 43 additions and 49 deletions
|
@ -8,6 +8,7 @@
|
|||
#include "core/hle/hle.h"
|
||||
#include "core/hle/kernel/thread.h"
|
||||
#include "core/hle/service/service.h"
|
||||
#include "core/hle/service/fs/archive.h"
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
@ -56,6 +57,7 @@ void RegisterAllModules() {
|
|||
|
||||
void Init() {
|
||||
Service::Init();
|
||||
Service::FS::ArchiveInit();
|
||||
|
||||
RegisterAllModules();
|
||||
|
||||
|
@ -63,6 +65,7 @@ void Init() {
|
|||
}
|
||||
|
||||
void Shutdown() {
|
||||
Service::FS::ArchiveShutdown();
|
||||
Service::Shutdown();
|
||||
|
||||
g_module_db.clear();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue