ADL: Bugfix hero flicker when Diablo is killed
This commit is contained in:
parent
0987f8b479
commit
050ee5d7bb
1 changed files with 1 additions and 1 deletions
|
|
@ -247,7 +247,7 @@ bool nthread_has_500ms_passed()
|
|||
|
||||
void nthread_UpdateProgressToNextGameTick()
|
||||
{
|
||||
if (!gbRunGame || PauseMode || (!gbIsMultiplayer && gmenu_is_active())) // if game is not running or paused there is no next gametick in the near future
|
||||
if (!gbRunGame || PauseMode || (!gbIsMultiplayer && gmenu_is_active()) || !gbProcessPlayers) // if game is not running or paused there is no next gametick in the near future
|
||||
return;
|
||||
int currentTickCount = SDL_GetTicks();
|
||||
int ticksElapsed = last_tick - currentTickCount;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue