mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-22 20:02:03 +00:00
P_WriteTextmap: Remove superfluous whitespaces in moreids
This commit is contained in:
parent
1dcee17fa4
commit
2d4aabe48e
1 changed files with 2 additions and 2 deletions
|
@ -2174,7 +2174,7 @@ static void P_WriteTextmap(void)
|
||||||
{
|
{
|
||||||
if (j > 1)
|
if (j > 1)
|
||||||
fprintf(f, " ");
|
fprintf(f, " ");
|
||||||
fprintf(f, " %d", mapthings[i].tags.tags[j]);
|
fprintf(f, "%d", mapthings[i].tags.tags[j]);
|
||||||
}
|
}
|
||||||
fprintf(f, "\";\n");
|
fprintf(f, "\";\n");
|
||||||
}
|
}
|
||||||
|
@ -2236,7 +2236,7 @@ static void P_WriteTextmap(void)
|
||||||
{
|
{
|
||||||
if (j > 1)
|
if (j > 1)
|
||||||
fprintf(f, " ");
|
fprintf(f, " ");
|
||||||
fprintf(f, " %d", wlines[i].tags.tags[j]);
|
fprintf(f, "%d", wlines[i].tags.tags[j]);
|
||||||
}
|
}
|
||||||
fprintf(f, "\";\n");
|
fprintf(f, "\";\n");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue