diff options
author | bunnei <bunneidev@gmail.com> | 2022-10-05 18:53:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-05 18:53:42 -0700 |
commit | d55096ce85d3f24f57f84e26c6256c42956b858a (patch) | |
tree | 8ea9756f0249505b9928b312ae64fad926433bc0 /src/input_common/drivers/gc_adapter.cpp | |
parent | 1689530f520f72ca198de421519fd2d6658af2d1 (diff) | |
parent | 35d3e7db2a0413a921e0846a3d76f9d9f36a2500 (diff) |
Merge pull request #9013 from liamwhite/spinning-a-yarnmainline-0-1190
common: remove "yuzu:" prefix from thread names
Diffstat (limited to 'src/input_common/drivers/gc_adapter.cpp')
-rw-r--r-- | src/input_common/drivers/gc_adapter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input_common/drivers/gc_adapter.cpp b/src/input_common/drivers/gc_adapter.cpp index 27a0ffb0dc..f4dd24e7df 100644 --- a/src/input_common/drivers/gc_adapter.cpp +++ b/src/input_common/drivers/gc_adapter.cpp @@ -90,7 +90,7 @@ GCAdapter::~GCAdapter() { void GCAdapter::AdapterInputThread(std::stop_token stop_token) { LOG_DEBUG(Input, "Input thread started"); - Common::SetCurrentThreadName("yuzu:input:GCAdapter"); + Common::SetCurrentThreadName("GCAdapter"); s32 payload_size{}; AdapterPayload adapter_payload{}; @@ -214,7 +214,7 @@ void GCAdapter::UpdateStateAxes(std::size_t port, const AdapterPayload& adapter_ } void GCAdapter::AdapterScanThread(std::stop_token stop_token) { - Common::SetCurrentThreadName("yuzu:input:ScanGCAdapter"); + Common::SetCurrentThreadName("ScanGCAdapter"); usb_adapter_handle = nullptr; pads = {}; while (!stop_token.stop_requested() && !Setup()) { |