};
HelpOptions("BSP Stage", 0, 80, bsp, sizeof(bsp)/sizeof(struct HelpOption));
}
+
void HelpVis()
{
struct HelpOption vis[] = {
};
HelpOptions("VIS Stage", 0, 80, vis, sizeof(vis)/sizeof(struct HelpOption));
}
+
void HelpLight()
{
struct HelpOption light[] = {
HelpOptions("Light Stage", 0, 80, light, sizeof(light)/sizeof(struct HelpOption));
}
-void HelpAnalize()
+void HelpAnalyze()
{
- struct HelpOption analize[] = {
+ struct HelpOption analyze[] = {
{"-analyze <filename.bsp>", "Switch that enters this mode"},
{"-lumpswap", "Swap byte order in the lumps"},
};
- HelpOptions("Analyzing BSP-like file structure", 0, 80, analize, sizeof(analize)/sizeof(struct HelpOption));
+ HelpOptions("Analyzing BSP-like file structure", 0, 80, analyze, sizeof(analyze)/sizeof(struct HelpOption));
}
+
void HelpScale()
{
struct HelpOption scale[] = {
};
HelpOptions("Scaling", 0, 80, scale, sizeof(scale)/sizeof(struct HelpOption));
}
+
void HelpConvert()
{
struct HelpOption convert[] = {
{"-bsp", "BSP Stage"},
{"-vis", "VIS Stage"},
{"-light", "Light Stage"},
- {"-analize", "Analyzing BSP-like file structure"},
+ {"-analyze", "Analyzing BSP-like file structure"},
{"-scale", "Scaling"},
{"-convert", "Converting & Decompiling"},
{"-export", "Exporting lightmaps"},
HelpBsp,
HelpVis,
HelpLight,
- HelpAnalize,
+ HelpAnalyze,
HelpScale,
HelpConvert,
HelpExport,