2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

service: fixed typo that MSVC did not catch as an error

This commit is contained in:
bunnei 2014-05-22 23:48:37 -04:00
parent 420971a849
commit 0aa582bf89

View file

@ -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());
}