diff options
Diffstat (limited to 'graphics/video/coktelvideo/coktelvideo.cpp')
-rw-r--r-- | graphics/video/coktelvideo/coktelvideo.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/graphics/video/coktelvideo/coktelvideo.cpp b/graphics/video/coktelvideo/coktelvideo.cpp index e014af58e5..95b12528c0 100644 --- a/graphics/video/coktelvideo/coktelvideo.cpp +++ b/graphics/video/coktelvideo/coktelvideo.cpp @@ -96,6 +96,10 @@ bool Imd::getFrameCoords(int16 frame, return false; } +bool Imd::hasExtraData() const { + return false; +} + bool Imd::hasExtraData(const char *fileName) const { return false; } @@ -2273,6 +2277,10 @@ bool Vmd::getFrameCoords(int16 frame, return getPartCoords(frame, kPartTypeVideo, x, y, width, height); } +bool Vmd::hasExtraData() const { + return !_extraData.empty(); +} + bool Vmd::hasExtraData(const char *fileName) const { for (uint i = 0; i < _extraData.size(); i++) if (!scumm_stricmp(_extraData[i].name, fileName)) |