mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-24 21:21:04 +00:00
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:
parent
bf6cdba0bb
commit
2c978bc6f7
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue