changeset 9880:90d416b0ef3b draft

(svn r14028) -Fix(r14027): Wrong value for the multiline_skipping. Just the other way around.
author belugas <belugas@openttd.org>
date Sat, 09 Aug 2008 02:54:06 +0000
parents 8347c718c756
children 2c191ca3239e
files src/gfx_func.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/gfx_func.h
+++ b/src/gfx_func.h
@@ -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);