File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -96,13 +96,13 @@ class FPSCounter extends TextField
9696 if (ClientPrefs .ffmpegMode )
9797 text + = " (Rendering Mode)" ;
9898
99- if (ClientPrefs .showRamUsage ) text + = " \n RAM : " + FlxStringUtil .formatBytes (memory ) + (ClientPrefs .showMaxRamUsage ? " / " + FlxStringUtil .formatBytes (mempeak ) : " " );
99+ if (ClientPrefs .showRamUsage ) text + = " \n Memory : " + FlxStringUtil .formatBytes (memory ) + (ClientPrefs .showMaxRamUsage ? " / " + FlxStringUtil .formatBytes (mempeak ) : " " );
100100 if (ClientPrefs .debugInfo )
101101 {
102- text + = ' \n State : ${Type .getClassName (Type .getClass (FlxG .state ))}' ;
102+ text + = ' \n Current state : ${Type .getClassName (Type .getClass (FlxG .state ))}' ;
103103 if (FlxG .state .subState != null )
104- text + = ' \n Substate : ${Type .getClassName (Type .getClass (FlxG .state .subState ))}' ;
105- text + = " \n System : " + ' ${System .platformLabel } ${System .platformVersion }' ;
104+ text + = ' \n Current substate : ${Type .getClassName (Type .getClass (FlxG .state .subState ))}' ;
105+ text + = " \n OS : " + ' ${System .platformLabel } ${System .platformVersion }' ;
106106 }
107107 }
108108}
You can’t perform that action at this time.
0 commit comments