mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 14:08:37 +00:00
Compilation fix
This commit is contained in:
parent
652c5901f8
commit
102f8cf993
2 changed files with 15 additions and 2 deletions
|
|
@ -173,3 +173,13 @@ bool Module::CheckID(u32 id, ID*& _id) const
|
|||
{
|
||||
return Emu.GetIdManager().CheckID(id) && (_id = &Emu.GetIdManager().GetID(id))->m_name == GetName();
|
||||
}
|
||||
|
||||
IdManager& Module::GetIdManager() const
|
||||
{
|
||||
return Emu.GetIdManager();
|
||||
}
|
||||
|
||||
StaticFuncManager& Module::GetSFuncManager() const
|
||||
{
|
||||
return Emu.GetSFuncManager();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue