- Linux and GCC fixes

SVN r931 (trunk)
This commit is contained in:
Christoph Oelckers 2008-04-20 19:39:08 +00:00
commit 2a7ff45829
5 changed files with 13 additions and 8 deletions

View file

@ -845,13 +845,16 @@ int PrintString (int printlevel, const char *outline)
//#endif
}
I_PrintStr (outline);
AddToConsole (printlevel, outline);
if (vidactive && screen && screen->Font)
if (printlevel != PRINT_LOG)
{
C_AddNotifyString (printlevel, outline);
maybedrawnow (false, false);
I_PrintStr (outline);
AddToConsole (printlevel, outline);
if (vidactive && screen && screen->Font)
{
C_AddNotifyString (printlevel, outline);
maybedrawnow (false, false);
}
}
return (int)strlen (outline);
}