aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2003-07-04 11:19:25 +0000
committerMax Horn2003-07-04 11:19:25 +0000
commitfbb9bc78347dc1a465ac62ad2c7e02eb6a1ac0f7 (patch)
tree9e8f0d8babf87794d0a9bfd05e67239599ff69bd
parent8d4c6d79999c5ade578c1d14a0c8d9c9424a8ed2 (diff)
downloadscummvm-rg350-fbb9bc78347dc1a465ac62ad2c7e02eb6a1ac0f7.tar.gz
scummvm-rg350-fbb9bc78347dc1a465ac62ad2c7e02eb6a1ac0f7.tar.bz2
scummvm-rg350-fbb9bc78347dc1a465ac62ad2c7e02eb6a1ac0f7.zip
fixed warning regarding overloaded virtual methods
svn-id: r8735
-rw-r--r--scumm/nut_renderer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/nut_renderer.h b/scumm/nut_renderer.h
index d68fb93894..1524fbc86f 100644
--- a/scumm/nut_renderer.h
+++ b/scumm/nut_renderer.h
@@ -39,8 +39,8 @@ protected:
void decodeCodec44(byte *dst, const byte *src, uint32 length);
- virtual void draw2byte(byte *dst, byte *mask, int c, int x, int y, byte color);
- virtual void drawChar(byte *dst, byte *mask, byte c, int x, int y, byte color);
+ void draw2byte(byte *dst, byte *mask, int c, int x, int y, byte color);
+ void drawChar(byte *dst, byte *mask, byte c, int x, int y, byte color);
public:
NutRenderer(Scumm *vm);