From 7b9faac5a079f6e0e60b53b697f6454d4b743380 Mon Sep 17 00:00:00 2001 From: Thomas Debesse Date: Fri, 12 Feb 2016 22:42:15 +0100 Subject: [PATCH] add help for -exportents --- tools/quake3/q3map2/help.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tools/quake3/q3map2/help.c b/tools/quake3/q3map2/help.c index 641aed59..5cc81ab9 100644 --- a/tools/quake3/q3map2/help.c +++ b/tools/quake3/q3map2/help.c @@ -286,6 +286,14 @@ void HelpExport() HelpOptions("Exporting lightmaps", 0, 80, exportl, sizeof(exportl)/sizeof(struct HelpOption)); } +void HelpExportEnts() +{ + struct HelpOption exportents[] = { + {"-exportents ", "Exports the entities to a text file (.ent)"}, + }; + HelpOptions("ExportEnts Stage", 0, 80, exportents, sizeof(exportents)/sizeof(struct HelpOption)); +} + void HelpFixaas() { struct HelpOption fixaas[] = { @@ -369,6 +377,7 @@ void HelpMain(const char* arg) {"-scale", "Scaling"}, {"-convert", "Converting & Decompiling"}, {"-export", "Exporting lightmaps"}, + {"-exportents", "Exporting entities"}, {"-fixaas", "Fixing AAS checksum"}, {"-info", "Get info about BSP file"}, {"-import", "Importing lightmaps"}, @@ -382,6 +391,7 @@ void HelpMain(const char* arg) HelpScale, HelpConvert, HelpExport, + HelpExportEnts, HelpFixaas, HelpInfo, HelpImport, -- 2.39.2