From 71331c7f53d91b3e46b65b46aaa50d35f13176cc Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Mon, 19 Apr 2010 12:50:49 +0000 Subject: 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 --- common/debug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common') diff --git a/common/debug.cpp b/common/debug.cpp index ed18639124..430083f3d8 100644 --- a/common/debug.cpp +++ b/common/debug.cpp @@ -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); -- cgit v1.2.3