diff options
author | Rene Stoeckel <[email protected]> | 2005-02-06 19:26:11 +0000 |
---|---|---|
committer | Rene Stoeckel <[email protected]> | 2005-02-06 19:26:11 +0000 |
commit | 9309415fa14870a7dee7582e27582b09e640b1ae (patch) | |
tree | 9cf7487df98eb3d4a431a4c37fa3ed9e3a9a78a6 /src/jake2/qcommon/Qcommon.java | |
parent | e8e176fa58fe9a42d48201c3ad7bb3f1704efda7 (diff) |
debug print distinguishes now between client and server messages.
Diffstat (limited to 'src/jake2/qcommon/Qcommon.java')
-rw-r--r-- | src/jake2/qcommon/Qcommon.java | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/jake2/qcommon/Qcommon.java b/src/jake2/qcommon/Qcommon.java index 9f8a6a9..c9edb2f 100644 --- a/src/jake2/qcommon/Qcommon.java +++ b/src/jake2/qcommon/Qcommon.java @@ -2,7 +2,7 @@ * Qcommon.java * Copyright 2003 * - * $Id: Qcommon.java,v 1.13 2004-12-20 13:20:31 hzi Exp $ + * $Id: Qcommon.java,v 1.14 2005-02-06 19:26:11 salomo Exp $ */ /* Copyright (C) 1997-2001 Id Software, Inc. @@ -91,7 +91,7 @@ public final class Qcommon extends Globals { Globals.host_speeds= Cvar.Get("host_speeds", "0", 0); Globals.log_stats= Cvar.Get("log_stats", "0", 0); - Globals.developer= Cvar.Get("developer", "0", 0); + Globals.developer= Cvar.Get("developer", "0", CVAR_ARCHIVE); Globals.timescale= Cvar.Get("timescale", "0", 0); Globals.fixedtime= Cvar.Get("fixedtime", "0", 0); Globals.logfile_active= Cvar.Get("logfile", "0", 0); @@ -206,12 +206,14 @@ public final class Qcommon extends Globals { if (Globals.host_speeds.value != 0.0f) time_before= Sys.Milliseconds(); - + + Com.debugContext = "SV:"; SV_MAIN.SV_Frame(msec); if (Globals.host_speeds.value != 0.0f) time_between= Sys.Milliseconds(); - + + Com.debugContext = "CL:"; CL.Frame(msec); if (Globals.host_speeds.value != 0.0f) { |