mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 14:37:08 +00:00
Fix module initialization
This commit is contained in:
parent
d7c3d1ce12
commit
634f353ed4
4 changed files with 19 additions and 0 deletions
|
|
@ -377,7 +377,11 @@ static void ppu_initialize_modules(const std::shared_ptr<ppu_linkage_info>& link
|
|||
for (auto& module : registered)
|
||||
{
|
||||
LOG_TRACE(LOADER, "Registered static module: %s", module->name);
|
||||
}
|
||||
|
||||
for (auto& pair : ppu_module_manager::get())
|
||||
{
|
||||
const auto module = pair.second;
|
||||
auto& linkage = link->modules[module->name];
|
||||
|
||||
for (auto& function : module->functions)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue