Skip to content

Commit

Permalink
update memory usage in stats
Browse files Browse the repository at this point in the history
  • Loading branch information
Elad Elrom authored and Elad Elrom committed Aug 4, 2010
1 parent 4787e63 commit 9057e6a
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 1 deletion.
Binary file modified bin-debug/BitmapCachingExample.swf
Binary file not shown.
Binary file modified bin-debug/CacheExternalAssetsExample.swf
Binary file not shown.
Binary file modified bin-debug/FrameRateControlExample.swf
Binary file not shown.
Binary file modified bin-debug/OptimazingTools.swf
Binary file not shown.
Binary file modified bin-debug/TrackListenersExample.swf
Binary file not shown.
2 changes: 1 addition & 1 deletion src/com/elad/optimize/memory/FrameStats.as
Expand Up @@ -385,7 +385,7 @@ package com.elad.optimize.memory
if (stage != null)
globalStyle.fps = "FPS: " + stage.frameRate;

globalStyle.memory = "MEM: " + Number( ( System.totalMemory * 0.000000954 ).toFixed(2) );
globalStyle.memory = "MEM: " + Number( ( System.totalMemory * 0.0000001 ).toFixed(2) );
globalStyle.time = "TIME: " + countSecondsSinceStart;

globalText.htmlText = globalStyle;
Expand Down
Binary file modified swc/OptimizeTools.swc
Binary file not shown.

0 comments on commit 9057e6a

Please sign in to comment.