diff options
author | Strangerke | 2013-09-08 10:53:33 +0200 |
---|---|---|
committer | Strangerke | 2013-09-08 10:53:33 +0200 |
commit | 21ff074fda6d6c3e2f62a9dc0993fd0ef0c375c7 (patch) | |
tree | b95d043720fdf14b8794c94e3fb2e97476666f3f /engines | |
parent | db6fcd5e9b61af93e89d4147d9b75ac5bae3cdf9 (diff) | |
download | scummvm-rg350-21ff074fda6d6c3e2f62a9dc0993fd0ef0c375c7.tar.gz scummvm-rg350-21ff074fda6d6c3e2f62a9dc0993fd0ef0c375c7.tar.bz2 scummvm-rg350-21ff074fda6d6c3e2f62a9dc0993fd0ef0c375c7.zip |
AVALANCHE: Fix uninitialized variable in TimeOut
Diffstat (limited to 'engines')
-rw-r--r-- | engines/avalanche/timeout2.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/avalanche/timeout2.cpp b/engines/avalanche/timeout2.cpp index 5a73db20ca..fe1bba53f8 100644 --- a/engines/avalanche/timeout2.cpp +++ b/engines/avalanche/timeout2.cpp @@ -51,6 +51,7 @@ Timeout::Timeout(AvalancheEngine *vm) { _times[i]._thenWhere = 0; _times[i]._whatFor = 0; } + _timerLost = false; } void Timeout::addTimer(int32 howlong, byte whither, byte why) { |