diff options
author | Strangerke | 2014-05-24 01:15:47 +0200 |
---|---|---|
committer | Strangerke | 2014-05-24 01:15:47 +0200 |
commit | 2e02e1c9387a62d2be0ffbce2bdb03bde01b9697 (patch) | |
tree | 3b085db08945aa118239e892d9a21db22e9bd4b2 /engines/avalanche | |
parent | 6b435616132fc438919549d529aefbccf90819af (diff) | |
download | scummvm-rg350-2e02e1c9387a62d2be0ffbce2bdb03bde01b9697.tar.gz scummvm-rg350-2e02e1c9387a62d2be0ffbce2bdb03bde01b9697.tar.bz2 scummvm-rg350-2e02e1c9387a62d2be0ffbce2bdb03bde01b9697.zip |
AVALANCHE: Initialize two variables in GhostRoom()
Diffstat (limited to 'engines/avalanche')
-rw-r--r-- | engines/avalanche/ghostroom.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/avalanche/ghostroom.cpp b/engines/avalanche/ghostroom.cpp index 16c79fdee0..047a3670c2 100644 --- a/engines/avalanche/ghostroom.cpp +++ b/engines/avalanche/ghostroom.cpp @@ -49,6 +49,9 @@ GhostRoom::GhostRoom(AvalancheEngine *vm) { _greldetCount = 0; _redGreldet = false; _wasLoaded = false; + + _ghost = nullptr; + _glerk = nullptr; } GhostRoom::~GhostRoom() { |