Overhaul to console structure, a bit

This commit is contained in:
iikorni
2026-08-30 00:50:23 -05:00
parent de75b014b3
commit 216dd1aecd
70 changed files with 2081 additions and 2260 deletions
+9 -9
View File
@@ -115,15 +115,15 @@ void Fog_FogCommand_f(void) {
switch (command::argc()) {
default:
case 1:
Con_Printf("usage:\n");
Con_Printf(" fog <density>\n");
Con_Printf(" fog <red> <green> <blue>\n");
Con_Printf(" fog <density> <red> <green> <blue>\n");
Con_Printf("current values:\n");
Con_Printf(" \"density\" is \"%f\"\n", fog_density);
Con_Printf(" \"red\" is \"%f\"\n", fog_red);
Con_Printf(" \"green\" is \"%f\"\n", fog_green);
Con_Printf(" \"blue\" is \"%f\"\n", fog_blue);
console::info("usage:\n");
console::info(" fog <density>\n");
console::info(" fog <red> <green> <blue>\n");
console::info(" fog <density> <red> <green> <blue>\n");
console::info("current values:\n");
console::info(" \"density\" is \"%f\"\n", fog_density);
console::info(" \"red\" is \"%f\"\n", fog_red);
console::info(" \"green\" is \"%f\"\n", fog_green);
console::info(" \"blue\" is \"%f\"\n", fog_blue);
return;
case 2:
d = std::atof(command::argv(1)->c_str());