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/core/debugger/debugger.cpp | |
parent | 1689530f520f72ca198de421519fd2d6658af2d1 (diff) | |
parent | 35d3e7db2a0413a921e0846a3d76f9d9f36a2500 (diff) |
Merge pull request #9013 from liamwhite/spinning-a-yarn
common: remove "yuzu:" prefix from thread names
Diffstat (limited to 'src/core/debugger/debugger.cpp')
-rw-r--r-- | src/core/debugger/debugger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/debugger/debugger.cpp b/src/core/debugger/debugger.cpp index e42bdd17d..339f971e6 100644 --- a/src/core/debugger/debugger.cpp +++ b/src/core/debugger/debugger.cpp @@ -140,7 +140,7 @@ private: } void ThreadLoop(std::stop_token stop_token) { - Common::SetCurrentThreadName("yuzu:Debugger"); + Common::SetCurrentThreadName("Debugger"); // Set up the client signals for new data. AsyncReceiveInto(signal_pipe, pipe_data, [&](auto d) { PipeData(d); }); |