mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-15 12:10:53 +00:00
- added ticker stub to the game interface.
This commit is contained in:
parent
cc04d41903
commit
34510ae9b3
2 changed files with 2 additions and 1 deletions
|
@ -96,6 +96,7 @@ struct GameInterface
|
|||
virtual void UpdateSounds() {}
|
||||
virtual void ErrorCleanup() {}
|
||||
virtual void Render() {}
|
||||
virtual void Ticker() {}
|
||||
|
||||
|
||||
};
|
||||
|
|
|
@ -278,7 +278,7 @@ void TryRunTics (void)
|
|||
//if (debugfile) fprintf (debugfile, "run tic %d\n", gametic);
|
||||
C_Ticker ();
|
||||
M_Ticker ();
|
||||
//G_Ticker();
|
||||
gi->Ticker();
|
||||
gametic++;
|
||||
|
||||
NetUpdate (); // check for new console commands
|
||||
|
|
Loading…
Reference in a new issue