diff options
-rw-r--r-- | engines/tony/gfxcore.h | 6 | ||||
-rw-r--r-- | engines/tony/inventory.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/engines/tony/gfxcore.h b/engines/tony/gfxcore.h index a637027051..c9081506d7 100644 --- a/engines/tony/gfxcore.h +++ b/engines/tony/gfxcore.h @@ -220,7 +220,7 @@ public: virtual ~RMGfxSourceBuffer16(); // Initialization - virtual void create(int dimx, int dimy); + void create(int dimx, int dimy); int getBpp(); virtual void draw(CORO_PARAM, RMGfxTargetBuffer &bigBuf, RMGfxPrimitive *prim); @@ -263,7 +263,7 @@ public: virtual ~RMGfxSourceBuffer8(); // Initialization - virtual void create(int dimx, int dimy); + void create(int dimx, int dimy); int getBpp(); virtual void draw(CORO_PARAM, RMGfxTargetBuffer &bigBuf, RMGfxPrimitive *prim); @@ -424,7 +424,7 @@ public: RMGfxSourceBuffer4(int dimx, int dimy); // Initialization - virtual void create(int dimx, int dimy); + void create(int dimx, int dimy); int getBpp(); virtual void draw(CORO_PARAM, RMGfxTargetBuffer &bigBuf, RMGfxPrimitive *prim); diff --git a/engines/tony/inventory.h b/engines/tony/inventory.h index 135480a3e9..5528e6589c 100644 --- a/engines/tony/inventory.h +++ b/engines/tony/inventory.h @@ -102,7 +102,7 @@ public: * Initialization and closing */ using RMGfxWoodyBuffer::init; - virtual void init(); + void init(); void close(); void reset(); |