From a98ad08c0e343b97b09b66eb8f8a5bfe0b435674 Mon Sep 17 00:00:00 2001 From: Dmugetsu Date: Mon, 21 Apr 2025 06:16:23 -0600 Subject: [PATCH] adding the linker i missed before --- src/emulator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); } } }