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