mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-02-05 21:30:55 +00:00
- SW: Re-position actortime clocking.
I believe this is the right place and I got it wrong when doing e32cd81cc7
. The change in this commit is more like where Duke times actortime.
This commit is contained in:
parent
715a61adbd
commit
253d1a3989
1 changed files with 3 additions and 3 deletions
|
@ -7659,10 +7659,11 @@ domovethings(void)
|
||||||
JS_ProcessEchoSpot();
|
JS_ProcessEchoSpot();
|
||||||
}
|
}
|
||||||
|
|
||||||
SpriteControl();
|
|
||||||
|
|
||||||
actortime.Reset();
|
actortime.Reset();
|
||||||
actortime.Clock();
|
actortime.Clock();
|
||||||
|
SpriteControl();
|
||||||
|
actortime.Unclock();
|
||||||
|
|
||||||
TRAVERSE_CONNECT(pnum)
|
TRAVERSE_CONNECT(pnum)
|
||||||
{
|
{
|
||||||
extern short screenpeek;
|
extern short screenpeek;
|
||||||
|
@ -7725,7 +7726,6 @@ domovethings(void)
|
||||||
DoPlayerSectorUpdatePostMove(pp);
|
DoPlayerSectorUpdatePostMove(pp);
|
||||||
PlayerGlobal(pp);
|
PlayerGlobal(pp);
|
||||||
}
|
}
|
||||||
actortime.Unclock();
|
|
||||||
|
|
||||||
MultiPlayLimits();
|
MultiPlayLimits();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue