summaryrefslogtreecommitdiffstats
path: root/src/yuzu/bootmanager.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-10-02 10:06:48 +0200
committerGitHub <noreply@github.com>2021-10-02 10:06:48 +0200
commitae3e51c795ea72dd1eaea64d44b94afab7d74007 (patch)
tree89860f4f5df991336bab7332a77e76bb58e1047f /src/yuzu/bootmanager.h
parentMerge pull request #7102 from Morph1984/remove-boxcat (diff)
parentservice: am: Make use of Exit to exit the currently running application (diff)
downloadyuzu-ae3e51c795ea72dd1eaea64d44b94afab7d74007.tar
yuzu-ae3e51c795ea72dd1eaea64d44b94afab7d74007.tar.gz
yuzu-ae3e51c795ea72dd1eaea64d44b94afab7d74007.tar.bz2
yuzu-ae3e51c795ea72dd1eaea64d44b94afab7d74007.tar.lz
yuzu-ae3e51c795ea72dd1eaea64d44b94afab7d74007.tar.xz
yuzu-ae3e51c795ea72dd1eaea64d44b94afab7d74007.tar.zst
yuzu-ae3e51c795ea72dd1eaea64d44b94afab7d74007.zip
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 402dd2ee1..54c4e2142 100644
--- a/src/yuzu/bootmanager.h
+++ b/src/yuzu/bootmanager.h
@@ -181,6 +181,9 @@ public:
*/
void ExecuteProgram(std::size_t program_index);
+ /// Instructs the window to exit the application.
+ void Exit();
+
public slots:
void OnEmulationStarting(EmuThread* emu_thread);
void OnEmulationStopping();
@@ -191,6 +194,7 @@ signals:
void Closed();
void FirstFrameDisplayed();
void ExecuteProgramSignal(std::size_t program_index);
+ void ExitSignal();
void MouseActivity();
private: