Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #11720 from Pokechu22/hookable-event-recursive-mutex
HookableEvent: Use std::recursive_mutex instead of std::mutex
  • Loading branch information
AdmiralCurtiss committed Apr 10, 2023
2 parents fdc1ff1 + 9e0755a commit 948a548
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Common/HookableEvent.h
Expand Up @@ -69,7 +69,7 @@ class HookableEvent

struct Storage
{
std::mutex m_mutex;
std::recursive_mutex m_mutex;
std::vector<HookImpl*> m_listeners;
};

Expand Down

0 comments on commit 948a548

Please sign in to comment.