mirror of https://github.com/PCSX2/pcsx2.git
VMManager: Add available ram info in log.
This commit is contained in:
parent
78fe0c0d00
commit
3a7698da46
|
@ -2504,8 +2504,10 @@ void VMManager::LogCPUCapabilities()
|
||||||
|
|
||||||
Console.WriteLnFmt(
|
Console.WriteLnFmt(
|
||||||
" Operating System = {}\n"
|
" Operating System = {}\n"
|
||||||
" Physical RAM = {} MB",
|
" Available RAM = {} MB\n"
|
||||||
|
" Physical RAM = {} MB\n",
|
||||||
GetOSVersionString(),
|
GetOSVersionString(),
|
||||||
|
GetAvailablePhysicalMemory() / _1mb,
|
||||||
GetPhysicalMemory() / _1mb);
|
GetPhysicalMemory() / _1mb);
|
||||||
|
|
||||||
Console.WriteLnFmt(" Processor = {}", cpuinfo_get_package(0)->name);
|
Console.WriteLnFmt(" Processor = {}", cpuinfo_get_package(0)->name);
|
||||||
|
|
Loading…
Reference in New Issue