VIDEO: Remove Bink header check from Smacker

This commit is contained in:
Matthew Hoops 2011-07-02 16:37:24 -04:00
parent 4ace7f626b
commit fffe7a9cc0

View File

@ -374,14 +374,6 @@ bool SmackerDecoder::loadStream(Common::SeekableReadStream *stream) {
// Seek to the first frame
_header.signature = _fileStream->readUint32BE();
// No BINK support available
if (_header.signature == MKTAG('B','I','K','i')) {
delete _fileStream;
_fileStream = 0;
return false;
}
assert(_header.signature == MKTAG('S','M','K','2') || _header.signature == MKTAG('S','M','K','4'));
uint32 width = _fileStream->readUint32LE();