2
0
mirror of https://github.com/rehlds/rehlds.git synced 2024-12-28 15:45:46 +03:00

Default *pfilename in COM_Log to status.log (#303)

Default filename in COM_Log changed to hllog.txt
This commit is contained in:
In-line 2017-01-05 19:16:57 +04:00 committed by theAsmodai
parent 73237e884b
commit bff0dfd7b4

View File

@ -2357,8 +2357,12 @@ void COM_Log(char *pszFile, char *fmt, ...)
if (!pszFile)
{
#ifdef REHLDS_FIXES
pfilename = "hllog.txt";
#else
// Why so serious?
pfilename = "c:\\hllog.txt";
#endif
}
else
{