summaryrefslogtreecommitdiff
path: root/network_data.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-06-24 12:38:35 +0000
committertron <tron@openttd.org>2005-06-24 12:38:35 +0000
commit3154e7148d00f0203760aefbc6f8a5bd210cc30c (patch)
tree17004bd894946da466a10e50a86ff66225cf8896 /network_data.c
parent3448729ff36ca9e91d91c256d9a5381ba901230b (diff)
downloadopenttd-3154e7148d00f0203760aefbc6f8a5bd210cc30c.tar.xz
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
Diffstat (limited to 'network_data.c')
-rw-r--r--network_data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/network_data.c b/network_data.c
index b31407790..cbb0b6f04 100644
--- a/network_data.c
+++ b/network_data.c
@@ -396,7 +396,7 @@ void NetworkAddCommandQueue(NetworkClientState *cs, CommandPacket *cp)
}
// Prepare a DoCommand to be send over the network
-void NetworkSend_Command(uint32 tile, uint32 p1, uint32 p2, uint32 cmd, CommandCallback *callback)
+void NetworkSend_Command(TileIndex tile, uint32 p1, uint32 p2, uint32 cmd, CommandCallback *callback)
{
CommandPacket *c = malloc(sizeof(CommandPacket));
byte temp_callback;