diff options
author | bunnei <ericbunnie@gmail.com> | 2014-05-23 05:48:37 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-05-23 05:48:37 +0200 |
commit | 0aa582bf89c3e3e479540b706511590636870912 (patch) | |
tree | 386e32cf3ec053491fb8dfd8459a1c92553241d9 /src/core | |
parent | core: fixed headers in CMakeLists (diff) | |
download | yuzu-0aa582bf89c3e3e479540b706511590636870912.tar yuzu-0aa582bf89c3e3e479540b706511590636870912.tar.gz yuzu-0aa582bf89c3e3e479540b706511590636870912.tar.bz2 yuzu-0aa582bf89c3e3e479540b706511590636870912.tar.lz yuzu-0aa582bf89c3e3e479540b706511590636870912.tar.xz yuzu-0aa582bf89c3e3e479540b706511590636870912.tar.zst yuzu-0aa582bf89c3e3e479540b706511590636870912.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/service/service.h | 2 |
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: /// 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()); } |