diff options
author | Eugene Sandulenko | 2013-11-09 13:15:47 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2013-11-09 13:15:47 +0200 |
commit | 9cf199cb42e4d0e723b098225487fcb83c8b11eb (patch) | |
tree | ca1575468d2e47d913259aad1dec02fda5158b94 /engines | |
parent | c9ae0a46dda76355c53ec0ec30647789ece2e727 (diff) | |
download | scummvm-rg350-9cf199cb42e4d0e723b098225487fcb83c8b11eb.tar.gz scummvm-rg350-9cf199cb42e4d0e723b098225487fcb83c8b11eb.tar.bz2 scummvm-rg350-9cf199cb42e4d0e723b098225487fcb83c8b11eb.zip |
PARALLACTION: Initialize class variables. CID 1002708
Diffstat (limited to 'engines')
-rw-r--r-- | engines/parallaction/parallaction.cpp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/engines/parallaction/parallaction.cpp b/engines/parallaction/parallaction.cpp index 5826e960bb..e7be1eb8a3 100644 --- a/engines/parallaction/parallaction.cpp +++ b/engines/parallaction/parallaction.cpp @@ -59,6 +59,33 @@ Parallaction::Parallaction(OSystem *syst, const PARALLACTIONGameDescription *gam DebugMan.addDebugChannel(kDebugAudio, "audio", "Audio debug level"); DebugMan.addDebugChannel(kDebugMenu, "menu", "Menu debug level"); DebugMan.addDebugChannel(kDebugInventory, "inventory", "Inventory debug level"); + + _screenHeight = 0; + _screenSize = 0; + _gameType = 0; + _gfx = 0; + _disk = 0; + _input = 0; + _debugger = 0; + _saveLoad = 0; + _menuHelper = 0; + _soundMan = 0; + _labelFont = 0; + _menuFont = 0; + _introFont = 0; + _dialogueFont = 0; + _globalFlagsNames = 0; + _objectsNames = 0; + _objects = 0; + _callableNames = 0; + _localFlagNames = 0; + _cmdExec = 0; + _programExec = 0; + _balloonMan = 0; + _inventoryRenderer = 0; + _inventory = 0; + _currentLocationIndex = 0; + _numLocations = 0; } Parallaction::~Parallaction() { |