(svn r75) -Add proper crediting to graphics artists to about box.

-Change DEBUG lvl for GRF warnings/errors to 2, lvl 1 is used for copyright notices
-Fix show currect filename when debugging grf files
This commit is contained in:
darkvater
2004-08-17 15:31:04 +00:00
parent 4e3ad7598f
commit 0361d3d12f
19 changed files with 194 additions and 184 deletions

View File

@@ -45,7 +45,7 @@ static void CDECL grfmsg(enum grfmsg_severity severity, const char *str, ...)
va_start(va, str);
vsprintf(buf, str, va);
va_end(va);
DEBUG(grf, 1) ("[%s][%s] %s", _cur_grffile, severitystr[severity], buf);
DEBUG(grf, 2) ("[%s][%s] %s", _cur_grffile, severitystr[severity], buf);
}
static byte INLINE grf_load_byte(byte **buf) {