(svn r6594) - Fix (r6513): When adding command callbacks, add the callback to the list...
authorpeter1138
Sat, 30 Sep 2006 21:36:00 +0000
changeset 4689 9a478541aec8
parent 4688 9cea258f031f
child 4690 a8c4eed3c81e
(svn r6594) - Fix (r6513): When adding command callbacks, add the callback to the list...
callback_table.c
--- a/callback_table.c	Sat Sep 30 21:23:34 2006 +0000
+++ b/callback_table.c	Sat Sep 30 21:36:00 2006 +0000
@@ -23,6 +23,9 @@
 CommandCallback CcBuildDocks;
 CommandCallback CcBuildCanal;
 
+/* depot_gui.c */
+CommandCallback CcCloneVehicle;
+
 /* main_gui.c */
 CommandCallback CcPlaySound10;
 CommandCallback CcPlaceSign;
@@ -81,7 +84,8 @@
 	/* 0x16 */ CcCloneRoadVeh,
 	/* 0x17 */ CcCloneShip,
 	/* 0x18 */ CcCloneTrain,
-	/* 0x19 */ CcAI
+	/* 0x19 */ CcAI,
+	/* 0x1A */ CcCloneVehicle
 };
 
 const int _callback_table_count = lengthof(_callback_table);