summaryrefslogtreecommitdiff
path: root/src/yuzu/bootmanager.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-01-10 15:27:12 -0500
committerGitHub <noreply@github.com>2023-01-10 15:27:12 -0500
commit0eae0b680312c6e57fa5f25de18b9ad0b42f550b (patch)
tree047cf75e640720c237c97b2e5315dedbbe8ce9fb /src/yuzu/bootmanager.h
parent74404261d22ff9d22da20c2fbe8b845388e8db41 (diff)
parent385ddef8c331117f16ccb681a8bd47e0603e9f3c (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.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;