Use the hacky PerfTimer if available and fall back to the NanoTimer if we're

running in a sandbox.


git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@234 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Michael Bayne
2007-05-09 21:53:42 +00:00
parent 20fe53d07f
commit 2e0678877b
@@ -759,7 +759,7 @@ public abstract class FrameManager
/** The name of the high-performance timer class we attempt to load. */ /** The name of the high-performance timer class we attempt to load. */
protected static final String[] PERF_TIMERS = { protected static final String[] PERF_TIMERS = {
"com.threerings.media.timer.NanoTimer",
"com.threerings.media.timer.PerfTimer", "com.threerings.media.timer.PerfTimer",
"com.threerings.media.timer.NanoTimer",
}; };
} }