1
0
Fork 0

(svn r14028) -Fix(r14027): Wrong value for the multiline_skipping. Just the other way around.

release/0.7
belugas 2008-08-09 02:54:06 +00:00
parent e3ea3c8fbe
commit 9e883ca48f
1 changed files with 1 additions and 1 deletions

View File

@ -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 DrawString(int x, int y, StringID str, uint16 color);
int DrawStringTruncated(int x, int y, StringID str, uint16 color, uint maxw); 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); int DoDrawStringTruncated(const char *str, int x, int y, uint16 color, uint maxw);
void DrawStringCenterUnderline(int x, int y, StringID str, uint16 color); void DrawStringCenterUnderline(int x, int y, StringID str, uint16 color);