core: hle: Add missing calls to MicroProfileOnThreadExit.
This commit is contained in:
parent
912dd50146
commit
82f6037ec2
2 changed files with 5 additions and 0 deletions
|
@ -38,6 +38,10 @@ void NVFlinger::SplitVSync() {
|
|||
system.RegisterHostThread();
|
||||
std::string name = "yuzu:VSyncThread";
|
||||
MicroProfileOnThreadCreate(name.c_str());
|
||||
|
||||
// Cleanup
|
||||
SCOPE_EXIT({ MicroProfileOnThreadExit(); });
|
||||
|
||||
Common::SetCurrentThreadName(name.c_str());
|
||||
Common::SetCurrentThreadPriority(Common::ThreadPriority::High);
|
||||
s64 delay = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue