summaryrefslogtreecommitdiff
path: root/src/input_common/drivers/mouse.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2022-10-05 18:53:42 -0700
committerGravatar GitHub2022-10-05 18:53:42 -0700
commitd55096ce85d3f24f57f84e26c6256c42956b858a (patch)
tree8ea9756f0249505b9928b312ae64fad926433bc0 /src/input_common/drivers/mouse.cpp
parentMerge pull request #9015 from german77/amiibo-rewrite (diff)
parentcommon: remove "yuzu:" prefix from thread names (diff)
downloadyuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.tar.gz
yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.tar.xz
yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.zip
Merge pull request #9013 from liamwhite/spinning-a-yarn
common: remove "yuzu:" prefix from thread names
Diffstat (limited to 'src/input_common/drivers/mouse.cpp')
-rw-r--r--src/input_common/drivers/mouse.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/drivers/mouse.cpp b/src/input_common/drivers/mouse.cpp
index 4909fa8d7..98c3157a8 100644
--- a/src/input_common/drivers/mouse.cpp
+++ b/src/input_common/drivers/mouse.cpp
@@ -37,7 +37,7 @@ Mouse::Mouse(std::string input_engine_) : InputEngine(std::move(input_engine_))
37} 37}
38 38
39void Mouse::UpdateThread(std::stop_token stop_token) { 39void Mouse::UpdateThread(std::stop_token stop_token) {
40 Common::SetCurrentThreadName("yuzu:input:Mouse"); 40 Common::SetCurrentThreadName("Mouse");
41 constexpr int update_time = 10; 41 constexpr int update_time = 10;
42 while (!stop_token.stop_requested()) { 42 while (!stop_token.stop_requested()) {
43 if (Settings::values.mouse_panning && !Settings::values.mouse_enabled) { 43 if (Settings::values.mouse_panning && !Settings::values.mouse_enabled) {