Change hashfiles filename string to a cstr

- It seems some compilers don't like passing FNames to Printf, and this
might as well be a cstr anyway.
This commit is contained in:
Edward Richardson 2015-03-26 23:38:09 +13:00
parent bf6cdba0bb
commit 2c978bc6f7

View file

@ -2223,7 +2223,7 @@ void D_DoomMain (void)
if (Args->CheckParm("-hashfiles"))
{
FString filename = "fileinfo.txt";
const char *filename = "fileinfo.txt";
Printf("Hashing loaded content to: %s\n", filename);
hashfile = fopen(filename, "w");
if (hashfile)