diff options
author | bunnei <bunneidev@gmail.com> | 2021-12-17 16:05:51 -0800 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2021-12-17 16:05:51 -0800 |
commit | c73841500a7bf98f9f4006d25507b7b596257cbd (patch) | |
tree | a7d617bc9b1525a5c342c34a8b909c15bf6cb293 /src/yuzu/applets/qt_error.cpp | |
parent | e242f169864c1e6eae067bb1866b18bde6aeb3ac (diff) |
core: hle: Remove global HLE lock.
- This was added early on as a hack to protect against some concurrency issues.
- It's not clear that this serves any purpose anymore, and if it does, individual components should be fixed rather than using a global recursive mutex.
Diffstat (limited to 'src/yuzu/applets/qt_error.cpp')
-rw-r--r-- | src/yuzu/applets/qt_error.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/yuzu/applets/qt_error.cpp b/src/yuzu/applets/qt_error.cpp index 45cf64603..879e73660 100644 --- a/src/yuzu/applets/qt_error.cpp +++ b/src/yuzu/applets/qt_error.cpp @@ -3,7 +3,6 @@ // Refer to the license.txt file included. #include <QDateTime> -#include "core/hle/lock.h" #include "yuzu/applets/qt_error.h" #include "yuzu/main.h" @@ -57,7 +56,5 @@ void QtErrorDisplay::ShowCustomErrorText(ResultCode error, std::string dialog_te } void QtErrorDisplay::MainWindowFinishedError() { - // Acquire the HLE mutex - std::lock_guard lock{HLE::g_hle_lock}; callback(); } |