- added ticker stub to the game interface.

This commit is contained in:
Christoph Oelckers 2020-08-30 08:03:03 +02:00
parent cc04d41903
commit 34510ae9b3
2 changed files with 2 additions and 1 deletions

View file

@ -96,6 +96,7 @@ struct GameInterface
virtual void UpdateSounds() {} virtual void UpdateSounds() {}
virtual void ErrorCleanup() {} virtual void ErrorCleanup() {}
virtual void Render() {} virtual void Render() {}
virtual void Ticker() {}
}; };

View file

@ -278,7 +278,7 @@ void TryRunTics (void)
//if (debugfile) fprintf (debugfile, "run tic %d\n", gametic); //if (debugfile) fprintf (debugfile, "run tic %d\n", gametic);
C_Ticker (); C_Ticker ();
M_Ticker (); M_Ticker ();
//G_Ticker(); gi->Ticker();
gametic++; gametic++;
NetUpdate (); // check for new console commands NetUpdate (); // check for new console commands