diff --git a/Code/Profiling/MemoryStatus.cs b/Code/Profiling/MemoryStatus.cs index a998ca0..5339a07 100644 --- a/Code/Profiling/MemoryStatus.cs +++ b/Code/Profiling/MemoryStatus.cs @@ -54,7 +54,7 @@ internal StringBuilder Text // Calculate ratios. double memUseRatio = sysUsedPhysical / totalPhysical; - double pageUseRatio = (sysUsedPhysical + sysExtraPage) / totalPage; + double pageUseRatio = sysExtraPage / totalPage; // Add usage strings. SetMemoryText(_gameRAMTitle, memUseRatio, gameUsedPhyiscal);