PCX_Decode warning demoted to "developer only"

"(Texture.pcx) file has possible size issues" will only appear when `developer 1`.
It might get annoying on properly working mods.
This commit is contained in:
Jaime Moreira 2024-08-27 13:04:00 -04:00
parent 45fce1deb0
commit 4756c44155
2 changed files with 2 additions and 2 deletions

View File

@ -368,7 +368,7 @@ PCX_Decode(const char *name, const byte *raw, int len, byte **pic, byte **palett
if (image_issues) if (image_issues)
{ {
Com_Printf("%s: %s file has possible size issues.\n", __func__, name); Com_DPrintf("%s: %s file has possible size issues.\n", __func__, name);
} }
} }

View File

@ -444,7 +444,7 @@ PCX_Decode(const char *name, const byte *raw, int len, byte **pic, byte **palett
if (image_issues) if (image_issues)
{ {
R_Printf(PRINT_ALL, "%s: %s file has possible size issues.\n", R_Printf(PRINT_DEVELOPER, "%s: %s file has possible size issues.\n",
__func__, name); __func__, name);
} }
} }