diff options
author | Eugene Sandulenko | 2016-05-04 21:08:15 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-05-04 21:15:58 +0200 |
commit | d5b4f8ee7eb6c53d6cf68274a9aded3f99be7650 (patch) | |
tree | 0f8537dd84707c6dfd8690994f1affdffb0db7eb /engines | |
parent | d7fe475266707691e7fd61ee16cb51292e4d5b93 (diff) | |
download | scummvm-rg350-d5b4f8ee7eb6c53d6cf68274a9aded3f99be7650.tar.gz scummvm-rg350-d5b4f8ee7eb6c53d6cf68274a9aded3f99be7650.tar.bz2 scummvm-rg350-d5b4f8ee7eb6c53d6cf68274a9aded3f99be7650.zip |
PARALLACTION: Init class variables
Diffstat (limited to 'engines')
-rw-r--r-- | engines/parallaction/parallaction.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/parallaction/parallaction.cpp b/engines/parallaction/parallaction.cpp index 2b75e78582..af898b2e20 100644 --- a/engines/parallaction/parallaction.cpp +++ b/engines/parallaction/parallaction.cpp @@ -60,6 +60,7 @@ Parallaction::Parallaction(OSystem *syst, const PARALLACTIONGameDescription *gam DebugMan.addDebugChannel(kDebugMenu, "menu", "Menu debug level"); DebugMan.addDebugChannel(kDebugInventory, "inventory", "Inventory debug level"); + _screenWidth = 0; _screenHeight = 0; _screenSize = 0; _gameType = 0; @@ -86,6 +87,7 @@ Parallaction::Parallaction(OSystem *syst, const PARALLACTIONGameDescription *gam _inventory = 0; _currentLocationIndex = 0; _numLocations = 0; + _language = 0; } Parallaction::~Parallaction() { |