mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-08-02 07:22:24 +00:00
making init func work on load sysmodules.
This commit is contained in:
parent
69777e2ffa
commit
5aae4f63ec
@ -311,7 +311,9 @@ void Emulator::LoadSystemModules(const std::string& game_serial) {
|
|||||||
if (it != found_modules.end()) {
|
if (it != found_modules.end()) {
|
||||||
LOG_INFO(Loader, "Loading {}", it->string());
|
LOG_INFO(Loader, "Loading {}", it->string());
|
||||||
if (linker->LoadModule(*it) != -1) {
|
if (linker->LoadModule(*it) != -1) {
|
||||||
continue;
|
if (init_func) {
|
||||||
|
init_func();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (init_func) {
|
if (init_func) {
|
||||||
|
Loading…
Reference in New Issue
Block a user