summaryrefslogtreecommitdiffstats
path: root/src/core/cpu_manager.cpp
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2022-10-04 00:43:56 +0200
committerLiam <byteslice@airmail.cc>2022-10-04 00:43:56 +0200
commit35d3e7db2a0413a921e0846a3d76f9d9f36a2500 (patch)
tree12f749fe914b16cbc0a8b424c1738495b4c154b7 /src/core/cpu_manager.cpp
parentMerge pull request #8955 from german77/amiibo-rewrite (diff)
downloadyuzu-35d3e7db2a0413a921e0846a3d76f9d9f36a2500.tar
yuzu-35d3e7db2a0413a921e0846a3d76f9d9f36a2500.tar.gz
yuzu-35d3e7db2a0413a921e0846a3d76f9d9f36a2500.tar.bz2
yuzu-35d3e7db2a0413a921e0846a3d76f9d9f36a2500.tar.lz
yuzu-35d3e7db2a0413a921e0846a3d76f9d9f36a2500.tar.xz
yuzu-35d3e7db2a0413a921e0846a3d76f9d9f36a2500.tar.zst
yuzu-35d3e7db2a0413a921e0846a3d76f9d9f36a2500.zip
Diffstat (limited to '')
-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) {
system.RegisterCoreThread(core);
std::string name;
if (is_multicore) {
- name = "yuzu:CPUCore_" + std::to_string(core);
+ name = "CPUCore_" + std::to_string(core);
} else {
- name = "yuzu:CPUThread";
+ name = "CPUThread";
}
MicroProfileOnThreadCreate(name.c_str());
Common::SetCurrentThreadName(name.c_str());