src/newgrf_station.cpp
branchgamebalance
changeset 9895 7bd07f43b0e3
parent 6474 24e7ceeb25f5
child 6669 487ac09b95c4
child 9505 9711235f5693
child 9906 6f41b8713b65
--- a/src/newgrf_station.cpp	Mon Mar 19 09:33:17 2007 +0000
+++ b/src/newgrf_station.cpp	Mon Mar 19 12:38:16 2007 +0000
@@ -31,7 +31,7 @@
  * This includes initialising the Default and Waypoint classes with an empty
  * entry, for standard stations and waypoints.
  */
-void ResetStationClasses(void)
+void ResetStationClasses()
 {
 	for (StationClassID i = STAT_CLASS_BEGIN; i < STAT_CLASS_MAX; i++) {
 		station_classes[i].id = 0;
@@ -95,7 +95,7 @@
 /** Build a list of station class name StringIDs to use in a dropdown list
  * @return Pointer to a (static) array of StringIDs
  */
-StringID *BuildStationClassDropdown(void)
+StringID *BuildStationClassDropdown()
 {
 	/* Allow room for all station classes, plus a terminator entry */
 	static StringID names[STAT_CLASS_MAX + 1];
@@ -115,7 +115,7 @@
  * Get the number of station classes in use.
  * @return Number of station classes.
  */
-uint GetNumStationClasses(void)
+uint GetNumStationClasses()
 {
 	uint i;
 	for (i = 0; i < STAT_CLASS_MAX && station_classes[i].id != 0; i++);