diff options
author | Subv <subv2112@gmail.com> | 2015-07-24 04:09:43 +0200 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2015-07-24 04:32:30 +0200 |
commit | 599744921de3160a1f91b78bc5fa5394c9e09730 (patch) | |
tree | 9c2a31867b1bb0190798bac41823d17c27128583 /src/core/hle/applets/applet.cpp | |
parent | Service/APT: Return proper parameters in GetLockHandle. (diff) | |
download | yuzu-599744921de3160a1f91b78bc5fa5394c9e09730.tar yuzu-599744921de3160a1f91b78bc5fa5394c9e09730.tar.gz yuzu-599744921de3160a1f91b78bc5fa5394c9e09730.tar.bz2 yuzu-599744921de3160a1f91b78bc5fa5394c9e09730.tar.lz yuzu-599744921de3160a1f91b78bc5fa5394c9e09730.tar.xz yuzu-599744921de3160a1f91b78bc5fa5394c9e09730.tar.zst yuzu-599744921de3160a1f91b78bc5fa5394c9e09730.zip |
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) 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; |