mirror of
https://git.eden-emu.dev/archive/citron
synced 2026-03-28 12:29:34 -04:00
Service/APT: Fixed a regression, PreloadLibraryApplet should also start an applet when called.
This commit is contained in:
@@ -91,7 +91,7 @@ ResultCode Applet::Start(const Service::APT::AppletStartupParameter& parameter)
|
||||
|
||||
bool IsLibraryAppletRunning() {
|
||||
// Check the applets map for instances of any applet
|
||||
for (auto& itr = applets.begin(); itr != applets.end(); ++itr)
|
||||
for (auto itr = applets.begin(); itr != applets.end(); ++itr)
|
||||
if (itr->second != nullptr)
|
||||
return true;
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user