mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-16 01:21:17 +00:00
- disabled the error message spam from the demo loop
These messages are useful for the playdemo CCMD, but since the demo loop is mostly non-functional anyway they better be disabled there.
This commit is contained in:
parent
37a82e08dc
commit
e70810cfdc
3 changed files with 4 additions and 3 deletions
|
@ -1336,6 +1336,7 @@ void D_DoAdvanceDemo (void)
|
|||
}
|
||||
else
|
||||
{
|
||||
singledemo = false;
|
||||
G_DeferedPlayDemo (demoname);
|
||||
demosequence = 2;
|
||||
break;
|
||||
|
|
|
@ -610,7 +610,7 @@ void FParser::SF_Include(void)
|
|||
|
||||
void FParser::SF_Input(void)
|
||||
{
|
||||
Printf(PRINT_BOLD,"input() function not available in doom\n");
|
||||
Printf(PRINT_BOLD,"input() function not available in Doom\n");
|
||||
}
|
||||
|
||||
//==========================================================================
|
||||
|
|
|
@ -2694,7 +2694,7 @@ void G_DoPlayDemo (void)
|
|||
}
|
||||
demo_p = demobuffer;
|
||||
|
||||
Printf ("Playing demo %s\n", defdemoname.GetChars());
|
||||
if (singledemo) Printf ("Playing demo %s\n", defdemoname.GetChars());
|
||||
|
||||
C_BackupCVars (); // [RH] Save cvars that might be affected by demo
|
||||
|
||||
|
@ -2711,7 +2711,7 @@ void G_DoPlayDemo (void)
|
|||
}
|
||||
else
|
||||
{
|
||||
Printf (PRINT_BOLD, "%s", eek);
|
||||
//Printf (PRINT_BOLD, "%s", eek);
|
||||
gameaction = ga_nothing;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue