HDB: Add _pauseFlag data

This commit is contained in:
Nipun Garg 2019-06-29 02:04:29 +05:30 committed by Eugene Sandulenko
parent 5b327fb519
commit b42109d368
2 changed files with 2 additions and 0 deletions

View File

@ -101,6 +101,7 @@ bool HDBGame::init() {
start();
_gameShutdown = false;
_pauseFlag = 0;
_systemInit = true;
return true;

View File

@ -196,6 +196,7 @@ private:
bool _systemInit;
GameState _gameState;
int _actionMode; // 0 or 1
int _pauseFlag;
};