diff options
| author | 2014-05-22 23:48:37 -0400 | |
|---|---|---|
| committer | 2014-05-22 23:48:37 -0400 | |
| commit | 0aa582bf89c3e3e479540b706511590636870912 (patch) | |
| tree | 386e32cf3ec053491fb8dfd8459a1c92553241d9 | |
| parent | core: fixed headers in CMakeLists (diff) | |
| download | yuzu-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.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: | |||
| 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 | ||