mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-09 01:01:07 +00:00
gl_model.c: change the 'ignored' messages from external lit and ent
files back to developer mode. git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@841 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
d3676574df
commit
b01498b8bd
1 changed files with 2 additions and 2 deletions
|
@ -655,7 +655,7 @@ void Mod_LoadLighting (lump_t *l)
|
|||
if (path_id < loadmodel->path_id)
|
||||
{
|
||||
Hunk_FreeToLowMark(mark);
|
||||
Con_Printf("ignored %s from a gamedir with lower priority\n", litfilename);
|
||||
Con_DPrintf("ignored %s from a gamedir with lower priority\n", litfilename);
|
||||
}
|
||||
else
|
||||
if (data[0] == 'Q' && data[1] == 'L' && data[2] == 'I' && data[3] == 'T')
|
||||
|
@ -741,7 +741,7 @@ void Mod_LoadEntities (lump_t *l)
|
|||
if (path_id < loadmodel->path_id)
|
||||
{
|
||||
Hunk_FreeToLowMark(mark);
|
||||
Con_Printf("ignored %s from a gamedir with lower priority\n", entfilename);
|
||||
Con_DPrintf("ignored %s from a gamedir with lower priority\n", entfilename);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue