From: cloudwalk Date: Wed, 12 Aug 2020 14:54:09 +0000 (+0000) Subject: host: Fix function name in print string. X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=c05f7e4d01c7164cccf0afa38f291523cb6f2991;p=xonotic%2Fdarkplaces.git host: Fix function name in print string. git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12898 d7cf8633-e32d-0410-b094-e92efae38249 --- 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; }