From 9e883ca48fc5e1c1ade46c26150db96dcc80ebc6 Mon Sep 17 00:00:00 2001 From: belugas Date: Sat, 9 Aug 2008 02:54:06 +0000 Subject: (svn r14028) -Fix(r14027): Wrong value for the multiline_skipping. Just the other way around. --- src/gfx_func.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gfx_func.h b/src/gfx_func.h index dceb17ae6..99736fa15 100644 --- a/src/gfx_func.h +++ b/src/gfx_func.h @@ -87,7 +87,7 @@ int DoDrawStringCentered(int x, int y, const char *str, uint16 color); int DrawString(int x, int y, StringID str, uint16 color); int DrawStringTruncated(int x, int y, StringID str, uint16 color, uint maxw); -int DoDrawString(const char *string, int x, int y, uint16 real_colour, bool multiline_skipping = true); +int DoDrawString(const char *string, int x, int y, uint16 real_colour, bool multiline_skipping = false); int DoDrawStringTruncated(const char *str, int x, int y, uint16 color, uint maxw); void DrawStringCenterUnderline(int x, int y, StringID str, uint16 color); -- cgit v1.2.3-54-g00ecf