summaryrefslogtreecommitdiffstats
path: root/src/core/hle/applets
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2015-07-24 04:09:43 +0200
committerSubv <subv2112@gmail.com>2015-07-24 04:32:30 +0200
commit599744921de3160a1f91b78bc5fa5394c9e09730 (patch)
tree9c2a31867b1bb0190798bac41823d17c27128583 /src/core/hle/applets
parentService/APT: Return proper parameters in GetLockHandle. (diff)
downloadyuzu-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')
-rw-r--r--src/core/hle/applets/applet.cpp2
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;