summaryrefslogtreecommitdiff
path: root/src/callback_table.cpp
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2009-08-25 10:44:19 +0000
committersmatz <smatz@openttd.org>2009-08-25 10:44:19 +0000
commite0f22b36a1c88bb7803fae109937e80983af0f9f (patch)
treee589e5849cfa19cebcd952b166c3ff59a18e6d1a /src/callback_table.cpp
parent6115a008b1508d9dd94fea2ac17750cdaca5abb8 (diff)
downloadopenttd-e0f22b36a1c88bb7803fae109937e80983af0f9f.tar.xz
(svn r17281) -Feature(tte): open the 'Rename group' dialog after creating new group
Diffstat (limited to 'src/callback_table.cpp')
-rw-r--r--src/callback_table.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/callback_table.cpp b/src/callback_table.cpp
index 8bf13f5f2..d0caf7b88 100644
--- a/src/callback_table.cpp
+++ b/src/callback_table.cpp
@@ -61,6 +61,9 @@ CommandCallback CcBuildShip;
CommandCallback CcBuildWagon;
CommandCallback CcBuildLoco;
+/* group_gui.cpp */
+CommandCallback CcCreateGroup;
+
/* ai/ai_core.cpp */
CommandCallback CcAI;
@@ -89,6 +92,7 @@ CommandCallback *_callback_table[] = {
/* 0x15 */ CcAI,
/* 0x16 */ CcCloneVehicle,
/* 0x17 */ CcGiveMoney,
+ /* 0x18 */ CcCreateGroup,
};
const int _callback_table_count = lengthof(_callback_table);