VIDEO: Fix signed/unsigned mismatch potentially breaking DXA seek.
This commit is contained in:
parent
36be0befad
commit
f7457c7c86
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue