aboutsummaryrefslogtreecommitdiff
path: root/scumm/smush/brenderer.h
diff options
context:
space:
mode:
authorPaweł Kołodziejski2003-03-12 21:44:18 +0000
committerPaweł Kołodziejski2003-03-12 21:44:18 +0000
commit08cd9d994a31403bbc00c8e3fc086a61501dad87 (patch)
treee5c997feb863625403c8a54f7609cbdd4e8ec836 /scumm/smush/brenderer.h
parentcdb699fa43845d392bbbc204eddd8269f5bd498e (diff)
downloadscummvm-rg350-08cd9d994a31403bbc00c8e3fc086a61501dad87.tar.gz
scummvm-rg350-08cd9d994a31403bbc00c8e3fc086a61501dad87.tar.bz2
scummvm-rg350-08cd9d994a31403bbc00c8e3fc086a61501dad87.zip
removed additional back buffer in smush
svn-id: r6802
Diffstat (limited to 'scumm/smush/brenderer.h')
-rw-r--r--scumm/smush/brenderer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/smush/brenderer.h b/scumm/smush/brenderer.h
index 52dbc07706..288e673d18 100644
--- a/scumm/smush/brenderer.h
+++ b/scumm/smush/brenderer.h
@@ -47,9 +47,9 @@ protected:
protected:
const char *getFilename() const { return _fname; }; //!< accessor for animation filename
int32 getNbframes() const { return _nbframes; }; //!< accessor for number of frames
- int32 getWidth() const { return _width; }; //!< accessor for current width
- int32 getHeight() const { return _height; }; //!< accessor for current height
- const char *data() const { return _data; }; //!< accessor for current frame buffer
+ virtual int32 getWidth() const { return _width; }; //!< accessor for current width
+ virtual int32 getHeight() const { return _height; }; //!< accessor for current height
+ virtual const char *data() const { return _data; }; //!< accessor for current frame buffer
void clean(); //!< memory cleanup (deletes frame buffer)
void setFrame(int32 f) { _frame = f; }; //!< allows to change the frame number
public: