diff options
| author | 2022-10-03 18:43:56 -0400 | |
|---|---|---|
| committer | 2022-10-03 18:43:56 -0400 | |
| commit | 35d3e7db2a0413a921e0846a3d76f9d9f36a2500 (patch) | |
| tree | 12f749fe914b16cbc0a8b424c1738495b4c154b7 /src/core/cpu_manager.cpp | |
| parent | Merge pull request #8955 from german77/amiibo-rewrite (diff) | |
| download | yuzu-35d3e7db2a0413a921e0846a3d76f9d9f36a2500.tar.gz yuzu-35d3e7db2a0413a921e0846a3d76f9d9f36a2500.tar.xz yuzu-35d3e7db2a0413a921e0846a3d76f9d9f36a2500.zip | |
common: remove "yuzu:" prefix from thread names
Diffstat (limited to 'src/core/cpu_manager.cpp')
| -rw-r--r-- | src/core/cpu_manager.cpp | 4 |
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()); |