- replace all \0 characters in Dehacked patches with spaces.

This is needed to make some old and broken patches in some WolfenDoom mods load.
This commit is contained in:
Christoph Oelckers 2015-02-07 15:27:31 +01:00
commit ec58178695
2 changed files with 7 additions and 1 deletions

View file

@ -694,7 +694,7 @@ void C_DoCommand (const char *cmd, int keynum)
}
else
{
Printf ("Unknown command \"%.*s\"\n", len, beg);
Printf ("Unknown command \"%.*s\"\n", (int)len, beg);
}
}
}