diff --git a/video/dxa_decoder.cpp b/video/dxa_decoder.cpp index 9361c131fd4..37fb953383b 100644 --- a/video/dxa_decoder.cpp +++ b/video/dxa_decoder.cpp @@ -69,7 +69,7 @@ void DXADecoder::readSoundData(Common::SeekableReadStream *stream) { addStreamTrack(Audio::makeWAVStream(stream->readStream(size), DisposeAfterUse::YES)); } else if (tag != MKTAG('N','U','L','L')) { - stream->skip(-4); + stream->seek(-4, SEEK_CUR); } }