adding the linker i missed before

This commit is contained in:
Dmugetsu 2025-04-21 06:16:23 -06:00
parent 5aae4f63ec
commit a98ad08c0e

View File

@ -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());
}
}
}