mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-04 18:29:41 +01:00
Don't initialize game.gametimer in the header file
That's a C++ thing apparently.
This commit is contained in:
parent
805992a1e1
commit
d740205138
2 changed files with 2 additions and 1 deletions
|
@ -365,6 +365,7 @@ void Game::init(void)
|
||||||
skipfakeload = false;
|
skipfakeload = false;
|
||||||
|
|
||||||
ghostsenabled = false;
|
ghostsenabled = false;
|
||||||
|
gametimer = 0;
|
||||||
|
|
||||||
cliplaytest = false;
|
cliplaytest = false;
|
||||||
playx = 0;
|
playx = 0;
|
||||||
|
|
|
@ -392,7 +392,7 @@ public:
|
||||||
bool shouldreturntoeditor;
|
bool shouldreturntoeditor;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int gametimer = 0;
|
int gametimer;
|
||||||
};
|
};
|
||||||
|
|
||||||
extern Game game;
|
extern Game game;
|
||||||
|
|
Loading…
Reference in a new issue