summaryrefslogtreecommitdiff
path: root/gfx.h
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-10-23 18:13:24 +0000
committerpeter1138 <peter1138@openttd.org>2006-10-23 18:13:24 +0000
commit9693ec3afb00f175553b7df905a1afa8676081e9 (patch)
tree16abfe336e37ba9af9b92ca92f778be77e7c68a0 /gfx.h
parentc7f320d707569c200f31d972e19b9beefd50d63e (diff)
downloadopenttd-9693ec3afb00f175553b7df905a1afa8676081e9.tar.xz
(svn r6908) - Codechange: Modify DrawStringMultiLine() to return the number of pixel lines used, and use it for drawing NewGRF additional text (mart3p)
Diffstat (limited to 'gfx.h')
-rw-r--r--gfx.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gfx.h b/gfx.h
index 9c7f91012..0976f4a0e 100644
--- a/gfx.h
+++ b/gfx.h
@@ -70,7 +70,7 @@ void GfxDrawLine(int left, int top, int right, int bottom, int color);
BoundingRect GetStringBoundingBox(const char *str);
void LoadStringWidthTable(void);
void DrawStringMultiCenter(int x, int y, StringID str, int maxw);
-void DrawStringMultiLine(int x, int y, StringID str, int maxw);
+uint DrawStringMultiLine(int x, int y, StringID str, int maxw);
void DrawDirtyBlocks(void);
void SetDirtyBlocks(int left, int top, int right, int bottom);
void MarkWholeScreenDirty(void);