Remove useless conprints

This commit is contained in:
Ian 2023-09-22 15:07:54 -04:00
parent a2b869e2a7
commit c7ed9701ba
2 changed files with 4 additions and 12 deletions

View file

@ -903,15 +903,7 @@ if (!strcmp(com_token, "light"))
key = ED_FindField (keyname);
if (!key)
{
if (strcmp (keyname, "compiler") &&
strcmp (keyname, "r_skycolor") &&
strcmp (keyname, "sequence") &&
strcmp (keyname, "message2") && //dirty hack to keep the console clean. Dem lazy mappers
strcmp (keyname, "mangle") &&
strcmp (keyname, "Maxrange") &&
strcmp (keyname, "light_lev") &&
strcmp (keyname, "fog"))
Con_Printf ("'%s' is not a field\n", keyname);
// cypress -- removed useless conprints
continue;
}
@ -1062,8 +1054,8 @@ void PR_LoadProgs (void)
if (progs->version != PROG_VERSION)
Sys_Error ("progs.dat has wrong version number (%i should be %i)", progs->version, PROG_VERSION);
if (progs->crc != PROGHEADER_CRC)
Con_Printf ("WARNING!!! progs.dat system vars have been modified, progdefs.h is out of date. Current one is %i\n", progs->crc);
// if (progs->crc != PROGHEADER_CRC)
// Con_Printf ("WARNING!!! progs.dat system vars have been modified, progdefs.h is out of date. Current one is %i\n", progs->crc);
pr_functions = (dfunction_t *)((byte *)progs + progs->ofs_functions);
pr_strings = (char *)progs + progs->ofs_strings;

View file

@ -573,7 +573,7 @@ void Mod_LoadTextures (lump_t *l)
}
if (!f) {
Con_Printf("Loading texture %s as WAD3, %dx%d\n", mt->name, mt->width, mt->height); // didn't find the texture in the folder
Con_DPrintf("Loading texture %s as WAD3, %dx%d\n", mt->name, mt->width, mt->height); // didn't find the texture in the folder
// naievil -- try to push wad3 loading
int index = WAD3_LoadTexture(mt);