mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 07:09:48 -06:00
Merge pull request #11720 from Pokechu22/hookable-event-recursive-mutex
HookableEvent: Use std::recursive_mutex instead of std::mutex
This commit is contained in:
@ -69,7 +69,7 @@ private:
|
|||||||
|
|
||||||
struct Storage
|
struct Storage
|
||||||
{
|
{
|
||||||
std::mutex m_mutex;
|
std::recursive_mutex m_mutex;
|
||||||
std::vector<HookImpl*> m_listeners;
|
std::vector<HookImpl*> m_listeners;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user