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
+4 -4
View File
@@ -275,11 +275,11 @@ void R_ReadPointFile_f (void)
COM_FOpenFile (name, &f, NULL);
if (!f)
{
Con_Printf ("couldn't open %s\n", name);
console::info ("couldn't open %s\n", name);
return;
}
Con_Printf ("Reading %s...\n", name);
console::info ("Reading %s...\n", name);
c = 0;
org[0] = org[1] = org[2] = 0; // silence pesky compiler warnings
for ( ;; )
@@ -291,7 +291,7 @@ void R_ReadPointFile_f (void)
if (!free_particles)
{
Con_Printf ("Not enough free particles\n");
console::info ("Not enough free particles\n");
break;
}
p = free_particles;
@@ -307,7 +307,7 @@ void R_ReadPointFile_f (void)
}
fclose (f);
Con_Printf ("%i points read\n", c);
console::info ("%i points read\n", c);
}
/*