more '\n' business
From /dev/humancontroller.
This commit is contained in:
parent
4cfbbe506c
commit
945f01d4af
12 changed files with 59 additions and 59 deletions
|
@ -392,7 +392,7 @@ void AAS_ParseBSPEntities(void)
|
|||
{
|
||||
if (strcmp(token.string, "{"))
|
||||
{
|
||||
ScriptError(script, "invalid %s\n", token.string);
|
||||
ScriptError(script, "invalid %s", token.string);
|
||||
AAS_FreeBSPEntities();
|
||||
FreeScript(script);
|
||||
return;
|
||||
|
@ -413,7 +413,7 @@ void AAS_ParseBSPEntities(void)
|
|||
ent->epairs = epair;
|
||||
if (token.type != TT_STRING)
|
||||
{
|
||||
ScriptError(script, "invalid %s\n", token.string);
|
||||
ScriptError(script, "invalid %s", token.string);
|
||||
AAS_FreeBSPEntities();
|
||||
FreeScript(script);
|
||||
return;
|
||||
|
@ -433,7 +433,7 @@ void AAS_ParseBSPEntities(void)
|
|||
} //end while
|
||||
if (strcmp(token.string, "}"))
|
||||
{
|
||||
ScriptError(script, "missing }\n");
|
||||
ScriptError(script, "missing }");
|
||||
AAS_FreeBSPEntities();
|
||||
FreeScript(script);
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue