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
commitb34de09e627fc5f8d7579c96c8b4290593c1dd32 (patch)
treed66fcca83a94bececa75c9b65acbde8161e9e4be /gfx.c
parent39ba8235b2febd36fc88929256b1bd18d482809e (diff)
downloadopenttd-b34de09e627fc5f8d7579c96c8b4290593c1dd32.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;