- Fixed: C_midPrint() needs a NULL status bar check.

SVN r267 (trunk)
This commit is contained in:
Randy Heit 2006-07-19 16:00:44 +00:00
parent b1989b4d34
commit 6d389c6b7d
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,6 @@
July 18, 2006
- Fixed: C_midPrint() needs a NULL status bar check.
July 17, 2006 (Changes by Graf Zahl)
- Fixed: PClass::CreateDerivedClass forgot to NULL FActorInfo::Replacee.

View file

@ -1814,6 +1814,9 @@ static const char logbar[] = "\n<------------------------------->\n";
void C_MidPrint (const char *msg)
{
if (StatusBar == NULL)
return;
if (msg)
{
AddToConsole (-1, bar1);