From 5ffafbb9b86b0a9d2303392333a9f6c77f2e30f9 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Sat, 25 Jun 2016 17:24:05 +0300 Subject: Revert "SCI32: Properly initialize AudioChannel inside Audio32::play()" This reverts commit 5eaea05a2b6af0ddcf28fca1f0cd3fc0c54f4d07. --- engines/sci/sound/audio32.cpp | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/engines/sci/sound/audio32.cpp b/engines/sci/sound/audio32.cpp index c457311d66..def3e4d838 100644 --- a/engines/sci/sound/audio32.cpp +++ b/engines/sci/sound/audio32.cpp @@ -561,20 +561,11 @@ uint16 Audio32::play(int16 channelIndex, const ResourceId resourceId, const bool AudioChannel &channel = getChannel(channelIndex); channel.id = resourceId; channel.resource = resource; - channel.resourceStream = nullptr; - channel.stream = nullptr; - channel.converter = nullptr; - channel.duration = 0; - channel.startedAtTick = 0; - channel.pausedAtTick = 0; channel.loop = loop; - channel.lastFadeTick = 0; - channel.fadeVolume = 0; - channel.fadeSpeed = 0; - channel.fadeStepsRemaining = 0; - channel.stopChannelOnFade = false; channel.robot = false; channel.vmd = false; + channel.lastFadeTick = 0; + channel.fadeStepsRemaining = 0; channel.soundNode = soundNode; channel.volume = volume < 0 || volume > kMaxVolume ? (int)kMaxVolume : volume; // TODO: SCI3 introduces stereo audio -- cgit v1.2.3