summaryrefslogtreecommitdiff
path: root/src/yuzu/bootmanager.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-01-10 12:46:01 -0500
committerLiam <byteslice@airmail.cc>2023-01-10 12:46:01 -0500
commit385ddef8c331117f16ccb681a8bd47e0603e9f3c (patch)
tree6dafac48e7eeea764cae67471fab7fc02a4962ef /src/yuzu/bootmanager.h
parentfda0e7e9899e1a023f3dea76079ffa9cce0e5d89 (diff)
qt: unlock during signal emission
Diffstat (limited to 'src/yuzu/bootmanager.h')
-rw-r--r--src/yuzu/bootmanager.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/yuzu/bootmanager.h b/src/yuzu/bootmanager.h
index eca16b313..092c6206f 100644
--- a/src/yuzu/bootmanager.h
+++ b/src/yuzu/bootmanager.h
@@ -92,6 +92,10 @@ public:
}
private:
+ void EmulationPaused(std::unique_lock<std::mutex>& lk);
+ void EmulationResumed(std::unique_lock<std::mutex>& lk);
+
+private:
Core::System& m_system;
std::stop_source m_stop_source;