Эх сурвалжийг харах

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

bunnei 12 жил өмнө
parent
commit
0aa582bf89

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