diff options
author | Einar Johan Trøan Sømåen | 2013-04-17 15:17:56 +0200 |
---|---|---|
committer | Einar Johan Trøan Sømåen | 2013-04-17 15:17:56 +0200 |
commit | c64386fe8813d46a8335ca59e2bd6c461b0d5331 (patch) | |
tree | cb25a3866062a0e9ecfba2b373789d879ec35ec2 /engines | |
parent | e5509488ed7f091400654810177438217a479ded (diff) | |
download | scummvm-rg350-c64386fe8813d46a8335ca59e2bd6c461b0d5331.tar.gz scummvm-rg350-c64386fe8813d46a8335ca59e2bd6c461b0d5331.tar.bz2 scummvm-rg350-c64386fe8813d46a8335ca59e2bd6c461b0d5331.zip |
WINTERMUTE: Initialize _gameDescription in default-constructor.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/wintermute/wintermute.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/wintermute/wintermute.cpp b/engines/wintermute/wintermute.cpp index ad26c42510..4e661506e3 100644 --- a/engines/wintermute/wintermute.cpp +++ b/engines/wintermute/wintermute.cpp @@ -51,6 +51,7 @@ WintermuteEngine::WintermuteEngine() : Engine(g_system) { _game = new AdGame(""); _debugger = nullptr; _trigDebug = false; + _gameDescription = nullptr; } WintermuteEngine::WintermuteEngine(OSystem *syst, const ADGameDescription *desc) |