- Removed unused lastTic global.

This commit is contained in:
Mitchell Richters 2023-03-23 17:38:01 +11:00
parent e5f3f5f149
commit e85162df97
6 changed files with 2 additions and 18 deletions

View file

@ -128,7 +128,6 @@ GameInterface* gi;
int myconnectindex, numplayers;
int connecthead, connectpoint2[MAXPLAYERS];
auto vsnprintfptr = vsnprintf; // This is an inline in Visual Studio but we need an address for it to satisfy the MinGW compiled libraries.
int lastTic;
extern bool pauseext;

View file

@ -237,9 +237,6 @@ enum
extern int paused;
extern int chatmodeon;
extern int lastTic;
extern int PlayClock;
enum gameaction_t : int

View file

@ -40,7 +40,6 @@ inline Collision movespritevel(DExhumedActor* spritenum, const DVector3& pos, do
}
void precache();
void resettiming();
// cd

View file

@ -15,25 +15,16 @@ along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
//-------------------------------------------------------------------------
#include "ns.h"
#include "engine.h"
#include "precache.h"
//#include <io.h>
//#include <fcntl.h>
#include "gamecvars.h"
#include "gamecontrol.h"
// static int globhiz, globloz, globhihit, globlohit;
BEGIN_PS_NS
void resettiming()
{
lastTic = -1;
}
//---------------------------------------------------------------------------
//
//
@ -53,4 +44,5 @@ void precache()
}
precacheMarkedTiles();
}
END_PS_NS

View file

@ -101,7 +101,6 @@ int EndLevel = 0;
void ResetEngine()
{
EraseScreen(-1);
resettiming();
}
void GameInterface::loadPalette()
@ -647,7 +646,6 @@ void GameInterface::app_init()
seq_LoadSequences();
InitStatus();
resettiming();
GrabPalette();
enginecompatibility_mode = ENGINECOMPATIBILITY_19961112;

View file

@ -233,7 +233,6 @@ void GameInterface::LevelCompleted(MapRecord *to_map, int skill)
void GameInterface::Startup()
{
resettiming();
EndLevel = 0;
PlayLogos(ga_mainmenu, ga_mainmenu, false);
}