diff options
| author | 2015-07-23 21:09:43 -0500 | |
|---|---|---|
| committer | 2015-07-23 21:32:30 -0500 | |
| commit | 599744921de3160a1f91b78bc5fa5394c9e09730 (patch) | |
| tree | 9c2a31867b1bb0190798bac41823d17c27128583 /src/core/hle/applets/applet.cpp | |
| parent | Service/APT: Return proper parameters in GetLockHandle. (diff) | |
| download | yuzu-599744921de3160a1f91b78bc5fa5394c9e09730.tar.gz yuzu-599744921de3160a1f91b78bc5fa5394c9e09730.tar.xz yuzu-599744921de3160a1f91b78bc5fa5394c9e09730.zip | |
Service/APT: Fixed a regression, PreloadLibraryApplet should also start an applet when called.
Diffstat (limited to 'src/core/hle/applets/applet.cpp')
| -rw-r--r-- | src/core/hle/applets/applet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/applets/applet.cpp b/src/core/hle/applets/applet.cpp index e9ab6ffd8..bc2a1829e 100644 --- a/src/core/hle/applets/applet.cpp +++ b/src/core/hle/applets/applet.cpp | |||
| @@ -91,7 +91,7 @@ ResultCode Applet::Start(const Service::APT::AppletStartupParameter& parameter) | |||
| 91 | 91 | ||
| 92 | bool IsLibraryAppletRunning() { | 92 | bool IsLibraryAppletRunning() { |
| 93 | // Check the applets map for instances of any applet | 93 | // Check the applets map for instances of any applet |
| 94 | for (auto& itr = applets.begin(); itr != applets.end(); ++itr) | 94 | for (auto itr = applets.begin(); itr != applets.end(); ++itr) |
| 95 | if (itr->second != nullptr) | 95 | if (itr->second != nullptr) |
| 96 | return true; | 96 | return true; |
| 97 | return false; | 97 | return false; |