mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 22:41:25 +12:00
Event system rewriting, EventManager partially implemented
cellAudio partially rewritten, some bugs fixed
This commit is contained in:
parent
8adf19c904
commit
460d948e87
28 changed files with 1228 additions and 476 deletions
|
@ -132,10 +132,12 @@ public:
|
|||
|
||||
bool HasID(const s64 id)
|
||||
{
|
||||
std::lock_guard<std::mutex> lock(m_mtx_main);
|
||||
{
|
||||
std::lock_guard<std::mutex> lock(m_mtx_main);
|
||||
|
||||
if(id == wxID_ANY)
|
||||
return m_id_map.begin() != m_id_map.end();
|
||||
if(id == wxID_ANY)
|
||||
return m_id_map.begin() != m_id_map.end();
|
||||
}
|
||||
|
||||
return CheckID(id);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue