(svn r6594) - Fix (r6513): When adding command callbacks, add the callback to the list...
--- 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);