Skip to content

Commit

Permalink
VIDEO: Fix typo with last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Hoops committed Jul 19, 2011
1 parent 7484ba0 commit d38fa57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion video/smk_decoder.cpp
Expand Up @@ -375,7 +375,7 @@ bool SmackerDecoder::loadStream(Common::SeekableReadStream *stream) {
// Read in the Smacker header
_header.signature = _fileStream->readUint32BE();

if (_header.signature != MKTAG('S', 'M', 'K', '2') && _header.signature == MKTAG('S', 'M', 'K', '4'))
if (_header.signature != MKTAG('S', 'M', 'K', '2') && _header.signature != MKTAG('S', 'M', 'K', '4'))
return false;

uint32 width = _fileStream->readUint32LE();
Expand Down

0 comments on commit d38fa57

Please sign in to comment.