mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-02-17 17:41:23 +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)
|
July 17, 2006 (Changes by Graf Zahl)
|
||||||
- Fixed: PClass::CreateDerivedClass forgot to NULL FActorInfo::Replacee.
|
- Fixed: PClass::CreateDerivedClass forgot to NULL FActorInfo::Replacee.
|
||||||
|
|
||||||
|
|
|
@ -1814,6 +1814,9 @@ static const char logbar[] = "\n<------------------------------->\n";
|
||||||
|
|
||||||
void C_MidPrint (const char *msg)
|
void C_MidPrint (const char *msg)
|
||||||
{
|
{
|
||||||
|
if (StatusBar == NULL)
|
||||||
|
return;
|
||||||
|
|
||||||
if (msg)
|
if (msg)
|
||||||
{
|
{
|
||||||
AddToConsole (-1, bar1);
|
AddToConsole (-1, bar1);
|
||||||
|
|
Loading…
Reference in a new issue