VMManager: Add available ram info in log.

This commit is contained in:
lightningterror 2025-04-19 10:28:23 +02:00
parent 78fe0c0d00
commit 3a7698da46
1 changed files with 3 additions and 1 deletions

View File

@ -2504,8 +2504,10 @@ void VMManager::LogCPUCapabilities()
Console.WriteLnFmt(
" Operating System = {}\n"
" Physical RAM = {} MB",
" Available RAM = {} MB\n"
" Physical RAM = {} MB\n",
GetOSVersionString(),
GetAvailablePhysicalMemory() / _1mb,
GetPhysicalMemory() / _1mb);
Console.WriteLnFmt(" Processor = {}", cpuinfo_get_package(0)->name);