Fix regression introduced with r46130, which caused debugN strings to be post processed via debugOutputFormatter.

Formerly all debugN strings were not post processed via "errorString" (or the
"debugOutputFormatter" as it is called nowadays). This revision did change
how debug strings are post processed and removed the special case for debugN
by accident.

svn-id: r48716
This commit is contained in:
Johannes Schickel 2010-04-19 12:50:49 +00:00
parent 1e1e049e32
commit 71331c7f53

View File

@ -156,7 +156,7 @@ static void debugHelper(const char *s, va_list va, bool caret = true) {
// Next, give the active engine (if any) a chance to augment the message,
// but only if not used from debugN.
if (Common::s_debugOutputFormatter) {
if (caret && Common::s_debugOutputFormatter) {
(*Common::s_debugOutputFormatter)(buf, in_buf, STRINGBUFLEN);
} else {
strncpy(buf, in_buf, STRINGBUFLEN);