(svn r14490) -Codechange: fix comment style on a few locations (Alberth)
authorrubidium
Sun, 19 Oct 2008 09:51:19 +0000
changeset 10259 0c47efd6a0c3
parent 10258 a3a74c4d0917
child 10260 c6ec6b3c1b18
(svn r14490) -Codechange: fix comment style on a few locations (Alberth)
src/cargo_type.h
src/town_cmd.cpp
--- a/src/cargo_type.h	Sun Oct 19 00:57:59 2008 +0000
+++ b/src/cargo_type.h	Sun Oct 19 09:51:19 2008 +0000
@@ -8,7 +8,7 @@
 typedef byte CargoID;
 
 enum {
-	// Temperate
+	/* Temperate */
 	CT_PASSENGERS   =  0,
 	CT_COAL         =  1,
 	CT_MAIL         =  2,
@@ -21,14 +21,14 @@
 	CT_STEEL        =  9,
 	CT_VALUABLES    = 10,
 
-	// Arctic
+	/* Arctic */
 	CT_WHEAT        =  6,
 	CT_HILLY_UNUSED =  8,
 	CT_PAPER        =  9,
 	CT_GOLD         = 10,
 	CT_FOOD         = 11,
 
-	// Tropic
+	/* Tropic */
 	CT_RUBBER       =  1,
 	CT_FRUIT        =  4,
 	CT_MAIZE        =  6,
@@ -36,7 +36,7 @@
 	CT_WATER        =  9,
 	CT_DIAMONDS     = 10,
 
-	// Toyland
+	/* Toyland */
 	CT_SUGAR        =  1,
 	CT_TOYS         =  3,
 	CT_BATTERIES    =  4,
--- a/src/town_cmd.cpp	Sun Oct 19 00:57:59 2008 +0000
+++ b/src/town_cmd.cpp	Sun Oct 19 09:51:19 2008 +0000
@@ -2602,20 +2602,20 @@
 }
 
 extern const TileTypeProcs _tile_type_town_procs = {
-	DrawTile_Town,           /* draw_tile_proc */
-	GetSlopeZ_Town,          /* get_slope_z_proc */
-	ClearTile_Town,          /* clear_tile_proc */
-	GetAcceptedCargo_Town,   /* get_accepted_cargo_proc */
-	GetTileDesc_Town,        /* get_tile_desc_proc */
-	GetTileTrackStatus_Town, /* get_tile_track_status_proc */
-	ClickTile_Town,          /* click_tile_proc */
-	AnimateTile_Town,        /* animate_tile_proc */
-	TileLoop_Town,           /* tile_loop_clear */
-	ChangeTileOwner_Town,    /* change_tile_owner_clear */
-	GetProducedCargo_Town,   /* get_produced_cargo_proc */
-	NULL,                    /* vehicle_enter_tile_proc */
-	GetFoundation_Town,      /* get_foundation_proc */
-	TerraformTile_Town,      /* terraform_tile_proc */
+	DrawTile_Town,           // draw_tile_proc
+	GetSlopeZ_Town,          // get_slope_z_proc
+	ClearTile_Town,          // clear_tile_proc
+	GetAcceptedCargo_Town,   // get_accepted_cargo_proc
+	GetTileDesc_Town,        // get_tile_desc_proc
+	GetTileTrackStatus_Town, // get_tile_track_status_proc
+	ClickTile_Town,          // click_tile_proc
+	AnimateTile_Town,        // animate_tile_proc
+	TileLoop_Town,           // tile_loop_clear
+	ChangeTileOwner_Town,    // change_tile_owner_clear
+	GetProducedCargo_Town,   // get_produced_cargo_proc
+	NULL,                    // vehicle_enter_tile_proc
+	GetFoundation_Town,      // get_foundation_proc
+	TerraformTile_Town,      // terraform_tile_proc
 };