Skip to content

Commit 73f61fe

Browse files
authored
Update FPSCounter.hx
no reason, just wanted to do this
1 parent b1cc377 commit 73f61fe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/debug/FPSCounter.hx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,13 +96,13 @@ class FPSCounter extends TextField
9696
if (ClientPrefs.ffmpegMode)
9797
text += " (Rendering Mode)";
9898

99-
if (ClientPrefs.showRamUsage) text += "\nRAM: " + FlxStringUtil.formatBytes(memory) + (ClientPrefs.showMaxRamUsage ? " / " + FlxStringUtil.formatBytes(mempeak) : "");
99+
if (ClientPrefs.showRamUsage) text += "\nMemory: " + FlxStringUtil.formatBytes(memory) + (ClientPrefs.showMaxRamUsage ? " / " + FlxStringUtil.formatBytes(mempeak) : "");
100100
if (ClientPrefs.debugInfo)
101101
{
102-
text += '\nState: ${Type.getClassName(Type.getClass(FlxG.state))}';
102+
text += '\nCurrent state: ${Type.getClassName(Type.getClass(FlxG.state))}';
103103
if (FlxG.state.subState != null)
104-
text += '\nSubstate: ${Type.getClassName(Type.getClass(FlxG.state.subState))}';
105-
text += "\nSystem: " + '${System.platformLabel} ${System.platformVersion}';
104+
text += '\nCurrent substate: ${Type.getClassName(Type.getClass(FlxG.state.subState))}';
105+
text += "\nOS: " + '${System.platformLabel} ${System.platformVersion}';
106106
}
107107
}
108108
}

0 commit comments

Comments
 (0)