diff options
author | belugas <belugas@openttd.org> | 2008-08-09 02:54:06 +0000 |
---|---|---|
committer | belugas <belugas@openttd.org> | 2008-08-09 02:54:06 +0000 |
commit | b4b9626172e70ac7f33f92a218a4e57c9e5b4bc6 (patch) | |
tree | b4e786975290ca30433683296a578c73ea105828 /src | |
parent | b71427370612b33584a7a8820489db15e06d81d7 (diff) | |
download | openttd-b4b9626172e70ac7f33f92a218a4e57c9e5b4bc6.tar.xz |
(svn r14028) -Fix(r14027): Wrong value for the multiline_skipping. Just the other way around.
Diffstat (limited to 'src')
-rw-r--r-- | src/gfx_func.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); |