diff options
author | Liam <byteslice@airmail.cc> | 2024-01-27 14:39:55 -0500 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2024-01-29 20:17:33 -0500 |
commit | 8e0a40434c8cc1de7b7262c0439380e5eca3e42a (patch) | |
tree | 8c4c431ce094cc55b13bcfd917f5dd27e25dd754 /src | |
parent | 68303ed6016da0926df8b62e5a0c55c9b914f927 (diff) |
am: stop emulation when all applets are closed
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/am/applet_manager.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/hle/service/am/applet_manager.cpp b/src/core/hle/service/am/applet_manager.cpp index a733525a2..52200d5b2 100644 --- a/src/core/hle/service/am/applet_manager.cpp +++ b/src/core/hle/service/am/applet_manager.cpp @@ -221,6 +221,7 @@ void AppletManager::InsertApplet(std::shared_ptr<Applet> applet) { void AppletManager::TerminateAndRemoveApplet(AppletResourceUserId aruid) { std::shared_ptr<Applet> applet; + bool should_stop = false; { std::scoped_lock lk{m_lock}; @@ -231,10 +232,17 @@ void AppletManager::TerminateAndRemoveApplet(AppletResourceUserId aruid) { applet = it->second; m_applets.erase(it); + + should_stop = m_applets.empty(); } // Terminate process. applet->process->Terminate(); + + // If there were no applets left, stop emulation. + if (should_stop) { + m_system.Exit(); + } } void AppletManager::CreateAndInsertByFrontendAppletParameters( |