Add PostUiTick(). Happens after all other tickers. Useful for handling changes in the play side within the same tic.

This commit is contained in:
Mari the Deer 2018-03-09 02:06:41 +01:00 committed by Christoph Oelckers
commit 3072c9bf7c
4 changed files with 21 additions and 0 deletions

View file

@ -1256,6 +1256,9 @@ void G_Ticker ()
default:
break;
}
// [MK] Additional ticker for UI events right after all others
E_PostUiTick();
}