diff --git a/source/cl_main.c b/source/cl_main.c index bb1e0aa..3f3abc8 100644 --- a/source/cl_main.c +++ b/source/cl_main.c @@ -1256,7 +1256,7 @@ void CL_Init_Cvars (void) "display realtime frames per second"); // Misty: I like to be able to see the time when I play show_time = Cvar_Get("show_time", "0", CVAR_NONE, - "display time in 24 hr:min format"); + "display the current time"); host_speeds = Cvar_Get("host_speeds", "0", CVAR_NONE, "display host processing times"); developer = Cvar_Get("developer", "0", CVAR_NONE, diff --git a/source/gl_screen.c b/source/gl_screen.c index fbfeeda..afae069 100644 --- a/source/gl_screen.c +++ b/source/gl_screen.c @@ -510,7 +510,7 @@ void SCR_DrawTime (void) localtime(&systime)); } - /* now actually print it to the screen directly below where show_fps is */ + /* now actually print it to the screen directly above where show_fps is */ snprintf (st, sizeof(st), "%s", local_time); x = cl_hudswap->int_val ? vid.width - ((strlen (st) * 8) + 8) : 8; y = vid.height - sb_lines - 16; diff --git a/source/screen.c b/source/screen.c index a8e4ce8..930d739 100644 --- a/source/screen.c +++ b/source/screen.c @@ -506,7 +506,6 @@ void SCR_DrawFPS (void) fps_count = 0; lastframetime = t; } - /* Misty: I really do need to read about snprintf a bit. This thing keeps chewing on my foot! */ snprintf (st, sizeof(st), "%-3d FPS", lastfps); /* Misty: New trick! (for me) the ? makes this work like a if then else - IE: if cl_hudswap->int_val is not null, do first case, else (else is a : here) do second case. @@ -543,7 +542,7 @@ void SCR_DrawTime (void) localtime (&systime)); } - /* now actually print it to the screen directly below where show_fps is */ + /* now actually print it to the screen directly above where show_fps is */ snprintf (st, sizeof(st), "%s", local_time); x = cl_hudswap->int_val ? vid.width - ((strlen (st) * 8) + 8) : 8; y = vid.height - sb_lines - 16;