diff --git a/src/emulator.cpp b/src/emulator.cpp index 1a71b99cb..78f2959e2 100644 --- a/src/emulator.cpp +++ b/src/emulator.cpp @@ -311,7 +311,9 @@ void Emulator::LoadSystemModules(const std::string& game_serial) { if (it != found_modules.end()) { LOG_INFO(Loader, "Loading {}", it->string()); if (linker->LoadModule(*it) != -1) { - continue; + if (init_func) { + init_func(); + } } } if (init_func) {