diff options
author | Holger Zickner <[email protected]> | 2005-07-01 14:20:56 +0000 |
---|---|---|
committer | Holger Zickner <[email protected]> | 2005-07-01 14:20:56 +0000 |
commit | db84d8bc1c5da2c8e703a1465da36a01cc278935 (patch) | |
tree | 7e41f45b911c9ffe075f5264679be68aac996b91 /src/jake2/client/SCR.java | |
parent | 667a27ca1186506757adae0997089f018beac49a (diff) |
remove timer hack and use new Timer classes
Diffstat (limited to 'src/jake2/client/SCR.java')
-rw-r--r-- | src/jake2/client/SCR.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/jake2/client/SCR.java b/src/jake2/client/SCR.java index df685e7..67aaf3c 100644 --- a/src/jake2/client/SCR.java +++ b/src/jake2/client/SCR.java @@ -2,7 +2,7 @@ * SCR.java * Copyright (C) 2003 * - * $Id: SCR.java,v 1.14 2005-02-08 20:33:33 cawe Exp $ + * $Id: SCR.java,v 1.15 2005-07-01 14:20:52 hzi Exp $ */ /* Copyright (C) 1997-2001 Id Software, Inc. @@ -31,8 +31,8 @@ import jake2.Globals; import jake2.game.Cmd; import jake2.game.cvar_t; import jake2.qcommon.*; -import jake2.sound.*; -import jake2.sys.Sys; +import jake2.sound.S; +import jake2.sys.Timer; import jake2.util.Lib; import jake2.util.Vargs; @@ -588,7 +588,7 @@ public final class SCR extends Globals { scr_draw_loading = 1; UpdateScreen(); - cls.disable_screen = Sys.Milliseconds(); + cls.disable_screen = Timer.Milliseconds(); cls.disable_servercount = cl.servercount; } @@ -618,7 +618,7 @@ public final class SCR extends Globals { if (cls.state != ca_active) return; - start = Sys.Milliseconds(); + start = Timer.Milliseconds(); if (Cmd.Argc() == 2) { // run without page flipping re.BeginFrame(0); @@ -637,7 +637,7 @@ public final class SCR extends Globals { } } - stop = Sys.Milliseconds(); + stop = Timer.Milliseconds(); time = (stop - start) / 1000.0f; Com.Printf("%f seconds (%f fps)\n", new Vargs(2).add(time).add( 128.0f / time)); @@ -1178,7 +1178,7 @@ public final class SCR extends Globals { // changing) // do nothing at all if (cls.disable_screen != 0) { - if (Sys.Milliseconds() - cls.disable_screen > 120000) { + if (Timer.Milliseconds() - cls.disable_screen > 120000) { cls.disable_screen = 0; Com.Printf("Loading plaque timed out.\n"); } |