diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-01-10 15:27:12 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-10 15:27:12 -0500 |
commit | 0eae0b680312c6e57fa5f25de18b9ad0b42f550b (patch) | |
tree | 047cf75e640720c237c97b2e5315dedbbe8ce9fb /src/yuzu/bootmanager.h | |
parent | 74404261d22ff9d22da20c2fbe8b845388e8db41 (diff) | |
parent | 385ddef8c331117f16ccb681a8bd47e0603e9f3c (diff) |
Merge pull request #9601 from liamwhite/it-never-ends
qt: unlock during signal emission
Diffstat (limited to 'src/yuzu/bootmanager.h')
-rw-r--r-- | src/yuzu/bootmanager.h | 4 |
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; |