1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-20 13:09:15 +00:00

(svn r3297) Staticise

This commit is contained in:
tron
2005-12-14 06:20:23 +00:00
parent ce94c90a7b
commit 23bfc03054
12 changed files with 24 additions and 21 deletions

View File

@@ -1304,7 +1304,7 @@ static void DetTrackDrawProc_Null(const TileInfo *ti)
}
typedef void DetailedTrackProc(const TileInfo *ti);
DetailedTrackProc * const _detailed_track_proc[16] = {
static DetailedTrackProc* const _detailed_track_proc[] = {
DetTrackDrawProc_Null,
DetTrackDrawProc_Null,
@@ -1719,7 +1719,7 @@ static void *SignalVehicleCheckProc(Vehicle *v, void *data)
}
/* Special check for SetSignalsAfterProc, to see if there is a vehicle on this tile */
bool SignalVehicleCheck(TileIndex tile, uint track)
static bool SignalVehicleCheck(TileIndex tile, uint track)
{
SignalVehicleCheckStruct dest;