1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-31 08:26:32 -05:00

Use recursive_mutex instead of mutex to fix #2902

This commit is contained in:
danzel
2017-08-29 20:39:55 +12:00
parent 61442d6afb
commit 8266064796
4 changed files with 5 additions and 5 deletions

View File

@@ -14,5 +14,5 @@ namespace HLE {
* to the emulated memory is not protected by this mutex, and should be avoided in any threads other
* than the CPU thread.
*/
extern std::mutex g_hle_lock;
extern std::recursive_mutex g_hle_lock;
} // namespace HLE