diff --git a/build.xml b/build.xml
index cff4f0a..8e93e05 100644
--- a/build.xml
+++ b/build.xml
@@ -75,6 +75,12 @@
+
+
+
+
+
+
@@ -102,6 +108,12 @@
+
+
+
+
+
+
@@ -131,6 +143,12 @@
+
+
+
+
+
+
@@ -146,6 +164,12 @@
+
+
+
+
+
+
diff --git a/src/lwjake2/sys/HighPrecisionTimer.java b/src/lwjake2/sys/HighPrecisionTimer.java
deleted file mode 100644
index 762a0e2..0000000
--- a/src/lwjake2/sys/HighPrecisionTimer.java
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * Copyright (C) 1997-2001 Id Software, Inc.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * See the GNU General Public License for more details.
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package lwjake2.sys;
-
-import sun.misc.Perf;
-
-// TODO: Is there an alternative to sun.misc.Perf? - flibit
-
-class HighPrecisionTimer extends Timer {
-
- private Perf perf = Perf.getPerf();
- private double f = 1000.0 / perf.highResFrequency();
- private long base;
-
- HighPrecisionTimer() {
- base = perf.highResCounter();
- }
-
- public long currentTimeMillis() {
- long time = perf.highResCounter();
- long delta = time - base;
- if (delta < 0) {
- delta += Long.MAX_VALUE + 1;
- }
- return (long)(delta * f);
- }
-}
diff --git a/src/lwjake2/sys/Timer.java b/src/lwjake2/sys/Timer.java
index a08551f..b8825c8 100644
--- a/src/lwjake2/sys/Timer.java
+++ b/src/lwjake2/sys/Timer.java
@@ -31,11 +31,7 @@ public abstract class Timer {
try {
t = new NanoTimer();
} catch (Throwable e) {
- try {
- t = new HighPrecisionTimer();
- } catch (Throwable e1) {
- t = new StandardTimer();
- }
+ t = new StandardTimer();
}
Com.Println("using " + t.getClass().getName());
}