From c05f7e4d01c7164cccf0afa38f291523cb6f2991 Mon Sep 17 00:00:00 2001 From: cloudwalk Date: Wed, 12 Aug 2020 14:54:09 +0000 Subject: [PATCH] host: Fix function name in print string. git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12898 d7cf8633-e32d-0410-b094-e92efae38249 --- host.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/host.c b/host.c index 911b29bf..cf102463 100644 --- a/host.c +++ b/host.c @@ -469,12 +469,12 @@ static inline double Host_UpdateTime (double newtime, double oldtime) { // warn if it's significant if (time < -0.01) - Con_Printf(CON_WARN "Host_GetTime: time stepped backwards (went from %f to %f, difference %f)\n", oldtime, newtime, time); + Con_Printf(CON_WARN "Host_UpdateTime: time stepped backwards (went from %f to %f, difference %f)\n", oldtime, newtime, time); time = 0; } else if (time >= 1800) { - Con_Printf(CON_WARN "Host_GetTime: time stepped forward (went from %f to %f, difference %f)\n", oldtime, newtime, time); + Con_Printf(CON_WARN "Host_UpdateTime: time stepped forward (went from %f to %f, difference %f)\n", oldtime, newtime, time); time = 0; } -- 2.39.2