mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-21 01:05:59 +00:00
VIDEO: Fix signed/unsigned mismatch potentially breaking DXA seek.
This commit is contained in:
parent
36be0befad
commit
f7457c7c86
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user