aboutsummaryrefslogtreecommitdiff
path: root/src/yuzu/bootmanager.cpp
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2022-10-03 18:43:56 -0400
committerLiam <byteslice@airmail.cc>2022-10-03 18:43:56 -0400
commit35d3e7db2a0413a921e0846a3d76f9d9f36a2500 (patch)
tree12f749fe914b16cbc0a8b424c1738495b4c154b7 /src/yuzu/bootmanager.cpp
parent61399de5dbc64ada1c9e5ec3d84be76c215fdc0c (diff)
common: remove "yuzu:" prefix from thread names
Diffstat (limited to 'src/yuzu/bootmanager.cpp')
-rw-r--r--src/yuzu/bootmanager.cpp2
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());