Change wordy error message I didn't like

git-svn-id: https://svn.eduke32.com/eduke32@6341 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2017-07-08 19:41:29 +00:00
parent 8d2fe8ec1d
commit 1e647ca499
1 changed files with 1 additions and 1 deletions

View File

@ -1617,7 +1617,7 @@ void OSD_Puts(const char *tmpstr)
}
else if (log.lines == log.cutoff)
{
Bfputs("\nMaximal log size reached. Logging stopped.\nSet the \"osdlogcutoff\" console variable to a higher value if you need a longer log.\n", osdlog);
Bfputs("\nLog file full! Consider increasing \"osdlogcutoff\".\n", osdlog);
log.lines = log.cutoff + 1;
}