small fix for bigfoot's $time

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4017 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2012-04-20 14:09:04 +00:00
parent ffb3ddcbb8
commit e6c741f2fe
1 changed files with 5 additions and 0 deletions

View File

@ -2307,7 +2307,12 @@ void SV_MVDEasyRecord_f (void)
Sys_freedir(dir);
if (c == 2)
{
char *c;
Q_strncpyz (name, Cmd_Argv(1), sizeof(name));
while(c = strchr(name, ':'))
*c = '-';
}
else
{
i = Dem_CountPlayers();