diff options
author | Sven Hesse | 2010-08-08 01:06:15 +0000 |
---|---|---|
committer | Sven Hesse | 2010-08-08 01:06:15 +0000 |
commit | 4133ef90bc35fe7e627dba8cb82bee3950e2329e (patch) | |
tree | f1e85ca9da951153005da814afb86b82589bfdfc | |
parent | a78ddb8488de0b6928b0135dfbd461e39380c436 (diff) | |
download | scummvm-rg350-4133ef90bc35fe7e627dba8cb82bee3950e2329e.tar.gz scummvm-rg350-4133ef90bc35fe7e627dba8cb82bee3950e2329e.tar.bz2 scummvm-rg350-4133ef90bc35fe7e627dba8cb82bee3950e2329e.zip |
VIDEO: Make CoktelDecoder::getFrameCoords() virtual
Like it should have been in the first place...
Fixes Woodruff slot-VMD positions.
svn-id: r51917
-rw-r--r-- | graphics/video/coktel_decoder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/video/coktel_decoder.h b/graphics/video/coktel_decoder.h index 76c266f5f6..415e59c636 100644 --- a/graphics/video/coktel_decoder.h +++ b/graphics/video/coktel_decoder.h @@ -99,7 +99,7 @@ public: void disableSound(); /** Return the coordinates of the specified frame. */ - bool getFrameCoords(int16 frame, int16 &x, int16 &y, int16 &width, int16 &height); + virtual bool getFrameCoords(int16 frame, int16 &x, int16 &y, int16 &width, int16 &height); /** Return whether that video has any embedded files. */ virtual bool hasEmbeddedFiles() const; |