AVALANCHE: Fix uninitialized variable in TimeOut

This commit is contained in:
Strangerke 2013-09-08 10:53:33 +02:00
parent db6fcd5e9b
commit 21ff074fda

View File

@ -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) {