]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Spectator list: fix compile
authorTimePath <andrew.hardaker1995@gmail.com>
Sat, 6 Aug 2016 07:52:21 +0000 (17:52 +1000)
committerTimePath <andrew.hardaker1995@gmail.com>
Sat, 6 Aug 2016 07:52:21 +0000 (17:52 +1000)
qcsrc/client/hud/panel/infomessages.qc

index 1839263a4563b7f1cd7a73bc3f2db8abad12c15e..31f7489bf453fb39633d0afe50333e029a1f8f86 100644 (file)
@@ -201,7 +201,7 @@ void HUD_InfoMessages()
                //if(spectatee_status != -1)
                {
                        s = ((spectatee_status) ? _("^1Spectating this player:") : _("^1Spectating you:"));
-                       //drawInfoMessage(s)
+                       // InfoMessage(s)
                        int limit = min(num_spectators, MAX_SPECTATORS);
                        for(int i = 0; i < limit; ++i)
                        {
@@ -210,7 +210,7 @@ void HUD_InfoMessages()
                                        s = strcat(s, " ^7", entcs_GetName(slot));
                                else
                                        s = strcat("^7", entcs_GetName(slot));
-                               drawInfoMessage(s);
+                               InfoMessage(s);
                        }
                }
        }