summaryrefslogtreecommitdiff
path: root/src/core/cpu_manager.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/core/cpu_manager.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/core/cpu_manager.cpp')
-rw-r--r--src/core/cpu_manager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/cpu_manager.cpp b/src/core/cpu_manager.cpp
index 9b1565ae1..0dd4c2196 100644
--- a/src/core/cpu_manager.cpp
+++ b/src/core/cpu_manager.cpp
@@ -189,9 +189,9 @@ void CpuManager::RunThread(std::size_t core) {
189 system.RegisterCoreThread(core); 189 system.RegisterCoreThread(core);
190 std::string name; 190 std::string name;
191 if (is_multicore) { 191 if (is_multicore) {
192 name = "yuzu:CPUCore_" + std::to_string(core); 192 name = "CPUCore_" + std::to_string(core);
193 } else { 193 } else {
194 name = "yuzu:CPUThread"; 194 name = "CPUThread";
195 } 195 }
196 MicroProfileOnThreadCreate(name.c_str()); 196 MicroProfileOnThreadCreate(name.c_str());
197 Common::SetCurrentThreadName(name.c_str()); 197 Common::SetCurrentThreadName(name.c_str());