mirror of
https://github.com/nzp-team/fteqw.git
synced 2025-02-18 09:51:50 +00:00
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:
parent
ffb3ddcbb8
commit
e6c741f2fe
1 changed files with 5 additions and 0 deletions
|
@ -2307,7 +2307,12 @@ void SV_MVDEasyRecord_f (void)
|
||||||
Sys_freedir(dir);
|
Sys_freedir(dir);
|
||||||
|
|
||||||
if (c == 2)
|
if (c == 2)
|
||||||
|
{
|
||||||
|
char *c;
|
||||||
Q_strncpyz (name, Cmd_Argv(1), sizeof(name));
|
Q_strncpyz (name, Cmd_Argv(1), sizeof(name));
|
||||||
|
while(c = strchr(name, ':'))
|
||||||
|
*c = '-';
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
i = Dem_CountPlayers();
|
i = Dem_CountPlayers();
|
||||||
|
|
Loading…
Reference in a new issue