]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
host: Fix function name in print string.
authorcloudwalk <cloudwalk@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 12 Aug 2020 14:54:09 +0000 (14:54 +0000)
committercloudwalk <cloudwalk@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 12 Aug 2020 14:54:09 +0000 (14:54 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12898 d7cf8633-e32d-0410-b094-e92efae38249

host.c

diff --git a/host.c b/host.c
index 911b29bf0403f7d69733aaed30d9a29a2cb48475..cf102463e96a6501ea8ec7006e137b714c959cb2 100644 (file)
--- 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;
        }