Overhaul to console structure, a bit
This commit is contained in:
+4
-4
@@ -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);
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user