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 | 9e883ca48fc5e1c1ade46c26150db96dcc80ebc6 (patch) | |
tree | b4e786975290ca30433683296a578c73ea105828 /src/gfx_func.h | |
parent | e3ea3c8fbee464ec5016f6b80f05370a1d864afc (diff) | |
download | openttd-9e883ca48fc5e1c1ade46c26150db96dcc80ebc6.tar.xz |
(svn r14028) -Fix(r14027): Wrong value for the multiline_skipping. Just the other way around.
Diffstat (limited to 'src/gfx_func.h')
-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); |