diff options
author | Eugene Sandulenko | 2016-05-02 17:39:20 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-05-02 17:39:20 +0200 |
commit | ca6a414ad02344cba779b705bddd618ce9dea498 (patch) | |
tree | 531c4b42b2b7b38d58885194b13bead47f8e4ecb /engines/mads | |
parent | 35476908f0abfa1dada13a8e654b7d4544427d80 (diff) | |
download | scummvm-rg350-ca6a414ad02344cba779b705bddd618ce9dea498.tar.gz scummvm-rg350-ca6a414ad02344cba779b705bddd618ce9dea498.tar.bz2 scummvm-rg350-ca6a414ad02344cba779b705bddd618ce9dea498.zip |
MADS: Fix class initialization
Diffstat (limited to 'engines/mads')
-rw-r--r-- | engines/mads/mads.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/mads/mads.cpp b/engines/mads/mads.cpp index 29bcd10094..5776d813cf 100644 --- a/engines/mads/mads.cpp +++ b/engines/mads/mads.cpp @@ -58,6 +58,7 @@ MADSEngine::MADSEngine(OSystem *syst, const MADSGameDescription *gameDesc) : _resources = nullptr; _sound = nullptr; _audio = nullptr; + _screen = nullptr; } MADSEngine::~MADSEngine() { |