Ver Fonte

Removed the direct accessing of the seconds counter
so that I don't break the build with my next changes.


git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@9156 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

PSp..om há 13 anos atrás
pai
commit
07d5451a31

+ 3 - 2
engine/src/android/jme3test/android/SimpleTexturedTest.java

@@ -139,8 +139,9 @@ public class SimpleTexturedTest extends SimpleApplication {
 	@Override
 	public void simpleUpdate(float tpf) {
 
-		if (secondCounter == 0)
-			logger.info("Frames per second: " + timer.getFrameRate());
+		// secondCounter has been removed from SimpleApplication
+                //if (secondCounter == 0)
+		//	logger.info("Frames per second: " + timer.getFrameRate());
 
 		spheresContainer.rotate(0.2f * tpf, 0.4f * tpf, 0.8f * tpf);
 	}