- removed the last static character arrays from FLevelLocals.

This commit is contained in:
Christoph Oelckers 2014-05-13 23:16:13 +02:00
commit 24886b6734
18 changed files with 61 additions and 74 deletions

View file

@ -484,7 +484,7 @@ static bool Cht_ChangeStartSpot (cheatseq_t *cheat)
{
char cmd[64];
mysnprintf (cmd, countof(cmd), "changemap %s %c", level.mapname, cheat->Args[0]);
mysnprintf (cmd, countof(cmd), "changemap %s %c", level.MapName.GetChars(), cheat->Args[0]);
C_DoCommand (cmd);
return true;
}