mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 11:18:36 +12:00
Include clearing
This commit is contained in:
parent
b005ee3cda
commit
4ffd03fe3e
80 changed files with 1785 additions and 1745 deletions
|
@ -1,5 +1,4 @@
|
|||
#include "stdafx.h"
|
||||
#include "Utilities/Log.h"
|
||||
#include "Emu/System.h"
|
||||
#include "Emu/SysCalls/Modules.h"
|
||||
#include "Emu/SysCalls/Static.h"
|
||||
|
@ -175,6 +174,11 @@ bool Module::CheckID(u32 id, ID*& _id) const
|
|||
return Emu.GetIdManager().CheckID(id) && (_id = &Emu.GetIdManager().GetID(id))->m_name == GetName();
|
||||
}
|
||||
|
||||
bool Module::RemoveId(u32 id)
|
||||
{
|
||||
return Emu.GetIdManager().RemoveID(id);
|
||||
}
|
||||
|
||||
IdManager& Module::GetIdManager() const
|
||||
{
|
||||
return Emu.GetIdManager();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue