فهرست منبع

vm_manager: Unstub GetTotalHeapUsage()

Now that we've moved all of the heap-related stuff to the VMManager
class, we can unstub this function, as the necessary members are visible
now.
Lioncash 7 سال پیش
والد
کامیت
004277477a
1فایلهای تغییر یافته به همراه1 افزوده شده و 2 حذف شده
  1. 1 2
      src/core/hle/kernel/vm_manager.cpp

+ 1 - 2
src/core/hle/kernel/vm_manager.cpp

@@ -574,8 +574,7 @@ u64 VMManager::GetTotalMemoryUsage() const {
 }
 
 u64 VMManager::GetTotalHeapUsage() const {
-    LOG_WARNING(Kernel, "(STUBBED) called");
-    return 0x0;
+    return heap_used;
 }
 
 VAddr VMManager::GetAddressSpaceBaseAddress() const {