summaryrefslogtreecommitdiff
path: root/gfx.h
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-11-13 21:16:34 +0000
committertron <tron@openttd.org>2005-11-13 21:16:34 +0000
commit357aba747578ecd3b8cc1a29bc740634211ada37 (patch)
treed66fcca83a94bececa75c9b65acbde8161e9e4be /gfx.h
parenteeade6978653e60e587f132f44b8d370244cc7bd (diff)
downloadopenttd-357aba747578ecd3b8cc1a29bc740634211ada37.tar.xz
(svn r3176) Use proper types, not some variants of int
Diffstat (limited to 'gfx.h')
-rw-r--r--gfx.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gfx.h b/gfx.h
index 1a2e436f1..e8bf5a704 100644
--- a/gfx.h
+++ b/gfx.h
@@ -68,8 +68,8 @@ uint16 GetDrawStringPlayerColor(PlayerID player);
int GetStringWidth(const char *str);
void LoadStringWidthTable(void);
-void DrawStringMultiCenter(int x, int y, uint16 str, int maxw);
-void DrawStringMultiLine(int x, int y, uint16 str, int maxw);
+void DrawStringMultiCenter(int x, int y, StringID str, int maxw);
+void 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);