1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-25 22:18:30 +02:00

Don't initialize game.gametimer in the header file

That's a C++ thing apparently.
This commit is contained in:
AllyTally 2020-06-12 19:23:16 -03:00 committed by Ethan Lee
parent 805992a1e1
commit d740205138
2 changed files with 2 additions and 1 deletions

View File

@ -365,6 +365,7 @@ void Game::init(void)
skipfakeload = false;
ghostsenabled = false;
gametimer = 0;
cliplaytest = false;
playx = 0;

View File

@ -392,7 +392,7 @@ public:
bool shouldreturntoeditor;
#endif
int gametimer = 0;
int gametimer;
};
extern Game game;