diff options
author | tron <tron@openttd.org> | 2005-06-24 12:38:35 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2005-06-24 12:38:35 +0000 |
commit | 3154e7148d00f0203760aefbc6f8a5bd210cc30c (patch) | |
tree | 17004bd894946da466a10e50a86ff66225cf8896 /bridge_gui.c | |
parent | 3448729ff36ca9e91d91c256d9a5381ba901230b (diff) | |
download | openttd-3154e7148d00f0203760aefbc6f8a5bd210cc30c.tar.xz |
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
Diffstat (limited to 'bridge_gui.c')
-rw-r--r-- | bridge_gui.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bridge_gui.c b/bridge_gui.c index b8f940df8..d3273757f 100644 --- a/bridge_gui.c +++ b/bridge_gui.c @@ -24,7 +24,7 @@ extern const PalSpriteID _bridge_sprites[MAX_BRIDGES]; extern const uint16 _bridge_speeds[MAX_BRIDGES]; extern const StringID _bridge_material[MAX_BRIDGES]; -void CcBuildBridge(bool success, uint tile, uint32 p1, uint32 p2) +void CcBuildBridge(bool success, TileIndex tile, uint32 p1, uint32 p2) { if (success) SndPlayTileFx(SND_27_BLACKSMITH_ANVIL, tile); } @@ -110,7 +110,7 @@ static const WindowDesc _build_road_bridge_desc = { }; -void ShowBuildBridgeWindow(uint start, uint end, byte bridge_type) +void ShowBuildBridgeWindow(TileIndex start, TileIndex end, byte bridge_type) { int j = 0; int32 ret; |