aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/service.h
diff options
context:
space:
mode:
authorGravatar bunnei <ericbunnie@gmail.com>2014-05-22 23:48:37 -0400
committerGravatar bunnei <ericbunnie@gmail.com>2014-05-22 23:48:37 -0400
commit0aa582bf89c3e3e479540b706511590636870912 (patch)
tree386e32cf3ec053491fb8dfd8459a1c92553241d9 /src/core/hle/service/service.h
parent420971a849b5811e4a6ae866292e70f40a716e5c (diff)
service: fixed typo that MSVC did not catch as an error
Diffstat (limited to 'src/core/hle/service/service.h')
-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 716669be..fab51753 100644
--- a/src/core/hle/service/service.h
+++ b/src/core/hle/service/service.h
@@ -71,7 +71,7 @@ public:
/// Frees a handle from the service
template <class T>
void DeleteHandle(const Handle handle) {
- g_object_pool.Destroy<T>(handle);
+ Kernel::g_object_pool.Destroy<T>(handle);
m_handles.erase(std::remove(m_handles.begin(), m_handles.end(), handle), m_handles.end());
}