common: remove "yuzu:" prefix from thread names

This commit is contained in:
Liam 2022-10-03 18:43:56 -04:00
parent 61399de5db
commit 35d3e7db2a
19 changed files with 23 additions and 23 deletions

View file

@ -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());