From 1e647ca499cb465a7315960b4fd75da56d8a06fd Mon Sep 17 00:00:00 2001 From: terminx Date: Sat, 8 Jul 2017 19:41:29 +0000 Subject: [PATCH] Change wordy error message I didn't like git-svn-id: https://svn.eduke32.com/eduke32@6341 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/build/src/osd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/build/src/osd.cpp b/source/build/src/osd.cpp index 54e7bdcf6..12c5b1036 100644 --- a/source/build/src/osd.cpp +++ b/source/build/src/osd.cpp @@ -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; }