Use recursive_mutex instead of mutex to fix #2902

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

View file

@ -7,5 +7,5 @@
#include <core/hle/lock.h>
namespace HLE {
std::mutex g_hle_lock;
std::recursive_mutex g_hle_lock;
}