diff options
-rw-r--r-- | src/gfx.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gfx.cpp b/src/gfx.cpp index f67698dd6..37f9a3d34 100644 --- a/src/gfx.cpp +++ b/src/gfx.cpp @@ -363,6 +363,8 @@ static int TruncateString(char *str, int maxw) } else if (c == SCC_BIGFONT) { size = FS_LARGE; ddd = GetCharacterWidth(size, '.') * 3; + } else if (c == '\n') { + DEBUG(misc, 0, "Drawing string using newlines with DrawString instead of DrawStringMultiLine. Please notify the developers of this: [%s]", str); } } |