aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/debug.cpp2
1 files changed, 1 insertions, 1 deletions
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);