Change default log filename to not use a space

bleh
This commit is contained in:
James R 2019-12-23 15:34:27 -08:00
parent d9d13764e6
commit c285000c56
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ int main(int argc, char **argv)
if (M_CheckParm("-logfile") && M_IsNextParm())
format = M_GetNextParm();
else
format = "log-%Y-%m-%d %H-%M-%S.txt";
format = "log-%Y-%m-%d_%H-%M-%S.txt";
strftime(logfile, sizeof logfile, format, timeinfo);