summaryrefslogtreecommitdiffstats
path: root/src/core/debugger
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-10-06 03:53:42 +0200
committerGitHub <noreply@github.com>2022-10-06 03:53:42 +0200
commitd55096ce85d3f24f57f84e26c6256c42956b858a (patch)
tree8ea9756f0249505b9928b312ae64fad926433bc0 /src/core/debugger
parentMerge pull request #9015 from german77/amiibo-rewrite (diff)
parentcommon: remove "yuzu:" prefix from thread names (diff)
downloadyuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.tar
yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.tar.gz
yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.tar.bz2
yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.tar.lz
yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.tar.xz
yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.tar.zst
yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.zip
Diffstat (limited to 'src/core/debugger')
-rw-r--r--src/core/debugger/debugger.cpp2
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); });