(svn r14028) -Fix(r14027): Wrong value for the multiline_skipping. Just the other way around.
authorbelugas
Sat, 09 Aug 2008 02:54:06 +0000
changeset 9880 09e4dba8c154
parent 9879 9329707cba0a
child 9881 3f2c19bc6974
(svn r14028) -Fix(r14027): Wrong value for the multiline_skipping. Just the other way around.
src/gfx_func.h
--- a/src/gfx_func.h	Sat Aug 09 02:11:46 2008 +0000
+++ b/src/gfx_func.h	Sat Aug 09 02:54:06 2008 +0000
@@ -87,7 +87,7 @@
 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);