Skip to content

Commit

Permalink
Adjust allocated page display color threshold.
Browse files Browse the repository at this point in the history
  • Loading branch information
algernon-A committed Apr 2, 2023
1 parent 5b4f01c commit 953c480
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Profiling/MemoryStatus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 953c480

Please sign in to comment.