We call RunAnywhere.currentTimeMillis() so that we can find out as soon as

possible if time has leaped into the past. This is primarily useful so
that we can correlate such happenings with other strangeness that may be
caused by time bogosity.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2912 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-12-13 02:59:05 +00:00
parent 1bdfb805ab
commit 3e466530f6
@@ -1,5 +1,5 @@
//
// $Id: FrameManager.java,v 1.47 2003/11/03 22:19:51 mdb Exp $
// $Id: FrameManager.java,v 1.48 2003/12/13 02:59:05 mdb Exp $
package com.threerings.media;
@@ -775,6 +775,11 @@ public abstract class FrameManager
} finally {
clearTicking(elapsed);
}
// call currentTimeMillis so that we are notified ASAP if
// time leaps into the past as it's useful for debugging
// other problems
RunAnywhere.currentTimeMillis();
}
};