changeset 4689:a10f7847ed30 draft

(svn r6594) - Fix (r6513): When adding command callbacks, add the callback to the list...
author peter1138 <peter1138@openttd.org>
date Sat, 30 Sep 2006 21:36:00 +0000
parents 29278c3e48c8
children 31f5a59d008f
files callback_table.c
diffstat 1 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/callback_table.c
+++ b/callback_table.c
@@ -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);