diff options
author | Liam <byteslice@airmail.cc> | 2022-10-03 18:43:56 -0400 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2022-10-03 18:43:56 -0400 |
commit | 35d3e7db2a0413a921e0846a3d76f9d9f36a2500 (patch) | |
tree | 12f749fe914b16cbc0a8b424c1738495b4c154b7 /src/yuzu/bootmanager.cpp | |
parent | 61399de5dbc64ada1c9e5ec3d84be76c215fdc0c (diff) |
common: remove "yuzu:" prefix from thread names
Diffstat (limited to 'src/yuzu/bootmanager.cpp')
-rw-r--r-- | src/yuzu/bootmanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp index d3fbdb09d1..24251247d2 100644 --- a/src/yuzu/bootmanager.cpp +++ b/src/yuzu/bootmanager.cpp @@ -47,7 +47,7 @@ EmuThread::EmuThread(Core::System& system_) : system{system_} {} EmuThread::~EmuThread() = default; void EmuThread::run() { - std::string name = "yuzu:EmuControlThread"; + std::string name = "EmuControlThread"; MicroProfileOnThreadCreate(name.c_str()); Common::SetCurrentThreadName(name.c_str()); |