SCI: fix regression of r50463

also check delta, because _play_tick does not include delta at that point - fixing sq1 ship takeoff

svn-id: r51067
This commit is contained in:
Martin Kiewitz 2010-07-20 17:28:10 +00:00
parent 14c2fb2f08
commit f771a2bbc7

View File

@ -475,7 +475,7 @@ void MidiParser_SCI::parseNextEvent(EventInfo &info) {
// on tick 0. Signal isn't set at that point by sierra sci and it would cause the castle daventry text to
// get immediately removed, so we currently filter it.
// Sierra SCI ignores them as well at that time
if (_position._play_tick) {
if ((_position._play_tick) || (info.delta)) {
_signalSet = true;
_signalToSet = info.basic.param1;
}