mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 14:42:13 +00:00
Fixed a map name bug.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@741 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
63685e264b
commit
340acfd808
1 changed files with 2 additions and 2 deletions
|
@ -163,7 +163,7 @@ static void VARGS PFQ2_error (char *fmt, ...)
|
||||||
vsprintf (msg, fmt, argptr);
|
vsprintf (msg, fmt, argptr);
|
||||||
va_end (argptr);
|
va_end (argptr);
|
||||||
|
|
||||||
Sys_Error ("Game Error: %s", msg);
|
SV_Error("Game Error: %s", msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -214,7 +214,7 @@ static void PFQ2_Configstring (int i, char *val)
|
||||||
}
|
}
|
||||||
else if (i == Q2CS_NAME)
|
else if (i == Q2CS_NAME)
|
||||||
{
|
{
|
||||||
Q_strncpyz(sv.name, val, sizeof(sv.name));
|
Q_strncpyz(sv.mapname, val, sizeof(sv.name));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue