summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2014-05-22 23:48:37 -0400
committerGravatar bunnei2014-05-22 23:48:37 -0400
commit0aa582bf89c3e3e479540b706511590636870912 (patch)
tree386e32cf3ec053491fb8dfd8459a1c92553241d9
parentcore: fixed headers in CMakeLists (diff)
downloadyuzu-0aa582bf89c3e3e479540b706511590636870912.tar.gz
yuzu-0aa582bf89c3e3e479540b706511590636870912.tar.xz
yuzu-0aa582bf89c3e3e479540b706511590636870912.zip
service: fixed typo that MSVC did not catch as an error
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/service.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/service.h b/src/core/hle/service/service.h
index 716669bed..fab51753f 100644
--- a/src/core/hle/service/service.h
+++ b/src/core/hle/service/service.h
@@ -71,7 +71,7 @@ public:
71 /// Frees a handle from the service 71 /// Frees a handle from the service
72 template <class T> 72 template <class T>
73 void DeleteHandle(const Handle handle) { 73 void DeleteHandle(const Handle handle) {
74 g_object_pool.Destroy<T>(handle); 74 Kernel::g_object_pool.Destroy<T>(handle);
75 m_handles.erase(std::remove(m_handles.begin(), m_handles.end(), handle), m_handles.end()); 75 m_handles.erase(std::remove(m_handles.begin(), m_handles.end(), handle), m_handles.end());
76 } 76 }
77 77