summaryrefslogtreecommitdiff
path: root/gfx.c
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.c
parenteeade6978653e60e587f132f44b8d370244cc7bd (diff)
downloadopenttd-357aba747578ecd3b8cc1a29bc740634211ada37.tar.xz
(svn r3176) Use proper types, not some variants of int
Diffstat (limited to 'gfx.c')
-rw-r--r--gfx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gfx.c b/gfx.c
index 670e62c9f..d3c6e7015 100644
--- a/gfx.c
+++ b/gfx.c
@@ -430,7 +430,7 @@ static uint32 FormatStringLinebreaks(char *str, int maxw)
}
}
-void DrawStringMultiCenter(int x, int y, uint16 str, int maxw)
+void DrawStringMultiCenter(int x, int y, StringID str, int maxw)
{
char buffer[512];
uint32 tmp;
@@ -476,7 +476,7 @@ void DrawStringMultiCenter(int x, int y, uint16 str, int maxw)
}
}
-void DrawStringMultiLine(int x, int y, uint16 str, int maxw)
+void DrawStringMultiLine(int x, int y, StringID str, int maxw)
{
char buffer[512];
uint32 tmp;