summaryrefslogtreecommitdiff
path: root/src/core/hle/applets/applet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/applets/applet.cpp')
-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)
91 91
92bool IsLibraryAppletRunning() { 92bool 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;