aboutsummaryrefslogtreecommitdiff
path: root/video/smk_decoder.cpp
diff options
context:
space:
mode:
authorMatthew Hoops2011-07-02 16:37:24 -0400
committerMatthew Hoops2011-07-02 16:37:24 -0400
commitfffe7a9cc06cd03b8a7efbe6e75e3fc1a14c38ba (patch)
tree4c481e6cbf6acc65e9598454e0bcd287475487ed /video/smk_decoder.cpp
parent4ace7f626b4d2a5ba2210f2a237fe1293e792a9b (diff)
downloadscummvm-rg350-fffe7a9cc06cd03b8a7efbe6e75e3fc1a14c38ba.tar.gz
scummvm-rg350-fffe7a9cc06cd03b8a7efbe6e75e3fc1a14c38ba.tar.bz2
scummvm-rg350-fffe7a9cc06cd03b8a7efbe6e75e3fc1a14c38ba.zip
VIDEO: Remove Bink header check from Smacker
Diffstat (limited to 'video/smk_decoder.cpp')
-rw-r--r--video/smk_decoder.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/video/smk_decoder.cpp b/video/smk_decoder.cpp
index 05a20ecd8d..c4c3721a28 100644
--- a/video/smk_decoder.cpp
+++ b/video/smk_decoder.cpp
@@ -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();