diff options
author | bunnei <bunneidev@gmail.com> | 2021-12-20 14:24:50 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-20 14:24:50 -0800 |
commit | ee6d40d414199f1b957499b4cc07d63e5c0b7ec5 (patch) | |
tree | c1c31b6a204407dd13de214c8781d9fde0930d1b /src/yuzu/applets/qt_error.cpp | |
parent | eb4ea7e5c7964c690066af450ba9c14147d4f0ae (diff) | |
parent | c73841500a7bf98f9f4006d25507b7b596257cbd (diff) |
Merge pull request #7597 from bunnei/remove-global-lock
core: hle: Remove global HLE lock.
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(); } |