Browse Source
Merge pull request #332 from bunnei/fix-total-mem-usage
vm_manager: Increase GetTotalMemoryUsage value.
pull/15/merge
bunnei
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/core/hle/kernel/vm_manager.cpp
|
|
|
@ -380,7 +380,7 @@ void VMManager::UpdatePageTableForVMA(const VirtualMemoryArea& vma) { |
|
|
|
|
|
|
|
u64 VMManager::GetTotalMemoryUsage() { |
|
|
|
LOG_WARNING(Kernel, "(STUBBED) called"); |
|
|
|
return 0xBE000000; |
|
|
|
return 0xF8000000; |
|
|
|
} |
|
|
|
|
|
|
|
u64 VMManager::GetTotalHeapUsage() { |
|
|
|
|