diff options
| author | 2022-10-03 18:43:56 -0400 | |
|---|---|---|
| committer | 2022-10-03 18:43:56 -0400 | |
| commit | 35d3e7db2a0413a921e0846a3d76f9d9f36a2500 (patch) | |
| tree | 12f749fe914b16cbc0a8b424c1738495b4c154b7 /src/input_common/drivers/mouse.cpp | |
| parent | Merge pull request #8955 from german77/amiibo-rewrite (diff) | |
| download | yuzu-35d3e7db2a0413a921e0846a3d76f9d9f36a2500.tar.gz yuzu-35d3e7db2a0413a921e0846a3d76f9d9f36a2500.tar.xz yuzu-35d3e7db2a0413a921e0846a3d76f9d9f36a2500.zip | |
common: remove "yuzu:" prefix from thread names
Diffstat (limited to '')
| -rw-r--r-- | src/input_common/drivers/mouse.cpp | 2 |
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 | ||
| 39 | void Mouse::UpdateThread(std::stop_token stop_token) { | 39 | void 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) { |