mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 22:41:25 +12:00
Add logging of exported SPRX functions on dummy load
This commit is contained in:
parent
7bd4cfc5b3
commit
e74cceb3f4
1 changed files with 4 additions and 2 deletions
|
@ -735,7 +735,9 @@ static auto ppu_load_exports(const ppu_module& _module, ppu_linkage_info* link,
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (for_observing_callbacks)
|
const bool is_dummy_load = Emu.IsReady() && g_fxo->get<main_ppu_module>().segs.empty() && !Emu.DeserialManager();
|
||||||
|
|
||||||
|
if (!is_dummy_load && for_observing_callbacks)
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
@ -759,7 +761,7 @@ static auto ppu_load_exports(const ppu_module& _module, ppu_linkage_info* link,
|
||||||
ppu_loader.error("Unexpected num_tlsvar (%u)!", lib.num_tlsvar);
|
ppu_loader.error("Unexpected num_tlsvar (%u)!", lib.num_tlsvar);
|
||||||
}
|
}
|
||||||
|
|
||||||
const bool should_load = ppu_register_library_lock(module_name, true);
|
const bool should_load = is_dummy_load || ppu_register_library_lock(module_name, true);
|
||||||
|
|
||||||
if (loaded_flags)
|
if (loaded_flags)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue