aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Hoops2011-07-19 10:15:51 -0400
committerMatthew Hoops2011-07-19 10:15:51 -0400
commitd38fa57d1bff511513bd98db622f9752254283c5 (patch)
treeb0248657d0a86deaaf9b38710f1851622b8be0ec
parent7484ba037cc75201e6cdae0374e9cd6baa1922a4 (diff)
downloadscummvm-rg350-d38fa57d1bff511513bd98db622f9752254283c5.tar.gz
scummvm-rg350-d38fa57d1bff511513bd98db622f9752254283c5.tar.bz2
scummvm-rg350-d38fa57d1bff511513bd98db622f9752254283c5.zip
VIDEO: Fix typo with last commit
-rw-r--r--video/smk_decoder.cpp2
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();