(svn r9050) -Codechange: Foo(void) -> Foo()

This commit is contained in:
rubidium
2007-03-07 11:47:46 +00:00
parent a69e3b1c45
commit 36bb92ae24
180 changed files with 1072 additions and 1073 deletions

View File

@@ -47,7 +47,7 @@ Depot *GetDepotByTile(TileIndex tile)
/**
* Allocate a new depot
*/
Depot *AllocateDepot(void)
Depot *AllocateDepot()
{
Depot *d;
@@ -85,7 +85,7 @@ void DestroyDepot(Depot *depot)
DeleteWindowById(WC_VEHICLE_DEPOT, depot->xy);
}
void InitializeDepots(void)
void InitializeDepots()
{
CleanPool(&_Depot_pool);
AddBlockToPool(&_Depot_pool);
@@ -99,7 +99,7 @@ static const SaveLoad _depot_desc[] = {
SLE_END()
};
static void Save_DEPT(void)
static void Save_DEPT()
{
Depot *depot;
@@ -109,7 +109,7 @@ static void Save_DEPT(void)
}
}
static void Load_DEPT(void)
static void Load_DEPT()
{
int index;