summaryrefslogtreecommitdiff
path: root/src/openttd.cpp
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2012-04-07 20:55:55 +0000
committeralberth <alberth@openttd.org>2012-04-07 20:55:55 +0000
commitb57bef91a12eb78dcd1fb3f106463b9081f09ef0 (patch)
treee571b0011032e68d924841bb1f0d01f4ea791c10 /src/openttd.cpp
parentfd2900f863a81f24c3a2b921fbaf2743526525a4 (diff)
downloadopenttd-b57bef91a12eb78dcd1fb3f106463b9081f09ef0.tar.xz
(svn r24099) -Add: Output list of -d option facilities with in the help text.
Diffstat (limited to 'src/openttd.cpp')
-rw-r--r--src/openttd.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/openttd.cpp b/src/openttd.cpp
index 3c8047b26..155dd9cf2 100644
--- a/src/openttd.cpp
+++ b/src/openttd.cpp
@@ -192,6 +192,9 @@ static void ShowHelp()
/* List the blitters */
p = BlitterFactoryBase::GetBlittersInfo(p, lastof(buf));
+ /* List the debug facilities. */
+ p = DumpDebugFacilityNames(p, lastof(buf));
+
/* We need to initialize the AI, so it finds the AIs */
AI::Initialize();
p = AI::GetConsoleList(p, lastof(buf), true);