mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-15 10:18:15 -05:00
CFG: Create a new subfolder cfg inside service to handle cfg
Moved most of the shared CFG code there, implemented a few CFG:I functions
This commit is contained in:
@ -9,6 +9,7 @@
|
||||
#include "core/hle/kernel/thread.h"
|
||||
#include "core/hle/service/service.h"
|
||||
#include "core/hle/service/fs/archive.h"
|
||||
#include "core/hle/service/cfg/cfg.h"
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
@ -58,6 +59,7 @@ void RegisterAllModules() {
|
||||
void Init() {
|
||||
Service::Init();
|
||||
Service::FS::ArchiveInit();
|
||||
Service::CFG::CFGInit();
|
||||
|
||||
RegisterAllModules();
|
||||
|
||||
@ -65,6 +67,7 @@ void Init() {
|
||||
}
|
||||
|
||||
void Shutdown() {
|
||||
Service::CFG::CFGShutdown();
|
||||
Service::FS::ArchiveShutdown();
|
||||
Service::Shutdown();
|
||||
|
||||
|
Reference in New Issue
Block a user