mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- Removed duplicate autoskip code.
This commit is contained in:
parent
be3b84e751
commit
1721d70212
1 changed files with 8 additions and 3 deletions
|
@ -1096,6 +1096,11 @@ void WI_End ()
|
|||
}
|
||||
}
|
||||
|
||||
bool WI_autoSkip()
|
||||
{
|
||||
return wi_autoadvance > 0 && bcnt > (wi_autoadvance * TICRATE);
|
||||
}
|
||||
|
||||
void WI_initNoState ()
|
||||
{
|
||||
state = NoState;
|
||||
|
@ -1114,7 +1119,7 @@ void WI_updateNoState ()
|
|||
else
|
||||
{
|
||||
bool noauto = noautostartmap;
|
||||
bool autoskip = (wi_autoadvance > 0 && bcnt > (wi_autoadvance * TICRATE));
|
||||
bool autoskip = WI_autoSkip();
|
||||
|
||||
for (int i = 0; !noauto && i < MAXPLAYERS; ++i)
|
||||
{
|
||||
|
@ -1254,7 +1259,7 @@ void WI_updateDeathmatchStats ()
|
|||
|
||||
int i;
|
||||
bool stillticking;
|
||||
bool autoskip = (wi_autoadvance > 0 && bcnt > (wi_autoadvance * TICRATE));
|
||||
bool autoskip = WI_autoSkip();
|
||||
|
||||
WI_updateAnimatedBack();
|
||||
|
||||
|
@ -1506,7 +1511,7 @@ void WI_updateNetgameStats ()
|
|||
int i;
|
||||
int fsum;
|
||||
bool stillticking;
|
||||
bool autoskip = (wi_autoadvance > 0 && bcnt > (wi_autoadvance * TICRATE));
|
||||
bool autoskip = WI_autoSkip();
|
||||
|
||||
WI_updateAnimatedBack ();
|
||||
|
||||
|
|
Loading…
Reference in a new issue