mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-24 13:01:47 +00:00
- Fixed: C_midPrint() needs a NULL status bar check.
SVN r267 (trunk)
This commit is contained in:
parent
b1989b4d34
commit
6d389c6b7d
2 changed files with 6 additions and 0 deletions
|
@ -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.
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue