- add fix for video recorders IsoTimer getTime()

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8706 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
nor..67 2011-11-16 22:38:50 +00:00
parent e8ffefe0e4
commit fa68e89e6c

View File

@ -58,7 +58,7 @@ public class VideoRecorderAppState extends AbstractAppState {
}
public long getTime() {
return (long) (this.ticks / this.framerate);
return (long) (this.ticks * (1.0f / this.framerate));
}
public long getResolution() {