diff options
author | Matthew Hoops | 2011-07-19 10:15:51 -0400 |
---|---|---|
committer | Matthew Hoops | 2011-07-19 10:15:51 -0400 |
commit | d38fa57d1bff511513bd98db622f9752254283c5 (patch) | |
tree | b0248657d0a86deaaf9b38710f1851622b8be0ec /video | |
parent | 7484ba037cc75201e6cdae0374e9cd6baa1922a4 (diff) | |
download | scummvm-rg350-d38fa57d1bff511513bd98db622f9752254283c5.tar.gz scummvm-rg350-d38fa57d1bff511513bd98db622f9752254283c5.tar.bz2 scummvm-rg350-d38fa57d1bff511513bd98db622f9752254283c5.zip |
VIDEO: Fix typo with last commit
Diffstat (limited to 'video')
-rw-r--r-- | video/smk_decoder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/video/smk_decoder.cpp b/video/smk_decoder.cpp index adb8fad8d8..dce80eda2c 100644 --- a/video/smk_decoder.cpp +++ b/video/smk_decoder.cpp @@ -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(); |