diff options
author | bunnei <bunneidev@gmail.com> | 2022-10-06 03:53:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-06 03:53:42 +0200 |
commit | d55096ce85d3f24f57f84e26c6256c42956b858a (patch) | |
tree | 8ea9756f0249505b9928b312ae64fad926433bc0 /src/core/hle/service | |
parent | Merge pull request #9015 from german77/amiibo-rewrite (diff) | |
parent | common: remove "yuzu:" prefix from thread names (diff) | |
download | yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.tar yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.tar.gz yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.tar.bz2 yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.tar.lz yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.tar.xz yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.tar.zst yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.zip |
Diffstat (limited to 'src/core/hle/service')
-rw-r--r-- | src/core/hle/service/nvflinger/nvflinger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvflinger/nvflinger.cpp b/src/core/hle/service/nvflinger/nvflinger.cpp index 93057e800..4246e5e25 100644 --- a/src/core/hle/service/nvflinger/nvflinger.cpp +++ b/src/core/hle/service/nvflinger/nvflinger.cpp @@ -31,7 +31,7 @@ constexpr auto frame_ns = std::chrono::nanoseconds{1000000000 / 60}; void NVFlinger::SplitVSync(std::stop_token stop_token) { system.RegisterHostThread(); - std::string name = "yuzu:VSyncThread"; + std::string name = "VSyncThread"; MicroProfileOnThreadCreate(name.c_str()); // Cleanup |