aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/sci/video/robot_decoder.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/engines/sci/video/robot_decoder.cpp b/engines/sci/video/robot_decoder.cpp
index 6a4e912218..4d62b51b47 100644
--- a/engines/sci/video/robot_decoder.cpp
+++ b/engines/sci/video/robot_decoder.cpp
@@ -401,12 +401,6 @@ void RobotDecoder::initAudio() {
_audioRecordInterval = RobotAudioStream::kRobotSampleRate / _frameRate;
- // TODO: Might actually be for all games newer than Lighthouse; check to
- // see which games have this condition.
- if (g_sci->getGameId() != GID_LIGHTHOUSE && !(_audioRecordInterval & 1)) {
- ++_audioRecordInterval;
- }
-
_expectedAudioBlockSize = _audioBlockSize - kAudioBlockHeaderSize;
_audioBuffer = (byte *)realloc(_audioBuffer, kRobotZeroCompressSize + _expectedAudioBlockSize);