mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-04-22 04:24:44 +00:00
cleanup
This commit is contained in:
parent
febede3b5a
commit
2fe8f22a23
1 changed files with 3 additions and 4 deletions
|
@ -6,10 +6,10 @@
|
|||
#include <magic_enum.hpp>
|
||||
|
||||
#include "common/logging/log.h"
|
||||
#include "core/libraries//kernel/libkernel.h"
|
||||
#include "core/libraries/error_codes.h"
|
||||
#include "core/libraries/libs.h"
|
||||
#include "core/libraries/system/sysmodule.h"
|
||||
#include "core/libraries//kernel/libkernel.h"
|
||||
|
||||
namespace Libraries::SysModule {
|
||||
|
||||
|
@ -46,11 +46,10 @@ int PS4_SYSV_ABI sceSysmoduleIsLoadedInternal() {
|
|||
int PS4_SYSV_ABI sceSysmoduleLoadModule(OrbisSysModule id) {
|
||||
auto color_name = magic_enum::enum_name(id);
|
||||
LOG_ERROR(Lib_SysModule, "(DUMMY) called module = {}", magic_enum::enum_name(id));
|
||||
//const auto& sys_module_path = Common::FS::GetUserPath(Common::FS::PathType::SysModuleDir);
|
||||
switch (id) {
|
||||
case OrbisSysModule::ORBIS_SYSMODULE_NGS2:
|
||||
Libraries::Kernel::sceKernelLoadStartModule("/system/common/lib/libSceNgs2.sprx", 0, NULL, 0,
|
||||
NULL, NULL);
|
||||
Libraries::Kernel::sceKernelLoadStartModule("/system/common/lib/libSceNgs2.sprx", 0, NULL,
|
||||
0, NULL, NULL);
|
||||
break;
|
||||
}
|
||||
return ORBIS_OK;
|
||||
|
|
Loading…
Add table
Reference in a new issue