summaryrefslogtreecommitdiff
path: root/src/yuzu/applets/qt_profile_select.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-12-20 14:24:50 -0800
committerGitHub <noreply@github.com>2021-12-20 14:24:50 -0800
commitee6d40d414199f1b957499b4cc07d63e5c0b7ec5 (patch)
treec1c31b6a204407dd13de214c8781d9fde0930d1b /src/yuzu/applets/qt_profile_select.cpp
parenteb4ea7e5c7964c690066af450ba9c14147d4f0ae (diff)
parentc73841500a7bf98f9f4006d25507b7b596257cbd (diff)
Merge pull request #7597 from bunnei/remove-global-lock
core: hle: Remove global HLE lock.
Diffstat (limited to 'src/yuzu/applets/qt_profile_select.cpp')
-rw-r--r--src/yuzu/applets/qt_profile_select.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/yuzu/applets/qt_profile_select.cpp b/src/yuzu/applets/qt_profile_select.cpp
index 7b19f1f8d..5b32da923 100644
--- a/src/yuzu/applets/qt_profile_select.cpp
+++ b/src/yuzu/applets/qt_profile_select.cpp
@@ -14,7 +14,6 @@
#include "common/fs/path_util.h"
#include "common/string_util.h"
#include "core/constants.h"
-#include "core/hle/lock.h"
#include "yuzu/applets/qt_profile_select.h"
#include "yuzu/main.h"
#include "yuzu/util/controller_navigation.h"
@@ -170,7 +169,5 @@ void QtProfileSelector::SelectProfile(
}
void QtProfileSelector::MainWindowFinishedSelection(std::optional<Common::UUID> uuid) {
- // Acquire the HLE mutex
- std::lock_guard lock{HLE::g_hle_lock};
callback(uuid);
}