mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-07 15:36:26 +00:00
Syscall analysis implemented
This commit is contained in:
parent
63e690ca11
commit
9db7de29fb
16 changed files with 234 additions and 155 deletions
|
|
@ -89,9 +89,11 @@ void idm::clear()
|
|||
// Call recorded finalization functions for all IDs
|
||||
for (std::size_t i = 0; i < g_map.size(); i++)
|
||||
{
|
||||
const auto on_stop = id_manager::typeinfo::get()[i].on_stop;
|
||||
|
||||
for (auto& id : g_map[i])
|
||||
{
|
||||
id_manager::typeinfo::get()[i].on_stop(id.second.get());
|
||||
on_stop(id.second.get());
|
||||
}
|
||||
|
||||
g_map[i].clear();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue