mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-26 04:35:16 +00:00
DRACI: Initialized class variables. CID 1003405
This commit is contained in:
parent
834ff819df
commit
2a6a23e88a
@ -81,6 +81,25 @@ Game::Game(DraciEngine *vm) : _vm(vm), _walkingState(vm) {
|
||||
_walkingMapOverlay = 0;
|
||||
_walkingShortestPathOverlay = 0;
|
||||
_walkingObliquePathOverlay = 0;
|
||||
_currentItem = 0;
|
||||
_itemUnderCursor = 0;
|
||||
_previousItemPosition = 0;
|
||||
|
||||
for (i = 0; i < kInventorySlots; i++)
|
||||
_inventory[i] = 0;
|
||||
|
||||
_newRoom = 0;
|
||||
_newGate = 0;
|
||||
_previousRoom = 0;
|
||||
_pushedNewRoom = 0;
|
||||
_pushedNewGate = 0;
|
||||
_currentDialogue = 0;
|
||||
_dialogueArchive = 0;
|
||||
_dialogueBlocks = 0;
|
||||
_dialogueBegin = 0;
|
||||
_dialogueExit = 0;
|
||||
_currentBlock = 0;
|
||||
_lastBlock = 0;
|
||||
|
||||
BArchive *initArchive = _vm->_initArchive;
|
||||
const BAFile *file;
|
||||
|
Loading…
x
Reference in New Issue
Block a user