aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/lab/anim.h2
-rw-r--r--engines/lab/image.h2
-rw-r--r--engines/lab/tilepuzzle.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/engines/lab/anim.h b/engines/lab/anim.h
index e9bc8589c0..0118403842 100644
--- a/engines/lab/anim.h
+++ b/engines/lab/anim.h
@@ -70,7 +70,7 @@ private:
public:
Anim(LabEngine *vm);
- virtual ~Anim();
+ ~Anim();
char _diffPalette[256 * 3];
bool _waitForEffect; // Wait for each sound effect to finish before continuing.
diff --git a/engines/lab/image.h b/engines/lab/image.h
index 8c28f63abf..eaad75102d 100644
--- a/engines/lab/image.h
+++ b/engines/lab/image.h
@@ -50,7 +50,7 @@ public:
Image(LabEngine *vm) : _width(0), _height(0), _imageData(nullptr), _vm(vm) {}
Image(int w, int h, byte *d, LabEngine *vm) : _width(w), _height(h), _imageData(d), _vm(vm) {}
Image(Common::File *s, LabEngine *vm);
- virtual ~Image();
+ ~Image();
/**
* Draws an image to the screen.
diff --git a/engines/lab/tilepuzzle.h b/engines/lab/tilepuzzle.h
index dd4abba8ec..948df9ddcd 100644
--- a/engines/lab/tilepuzzle.h
+++ b/engines/lab/tilepuzzle.h
@@ -47,7 +47,7 @@ private:
public:
TilePuzzle(LabEngine *vm);
- virtual ~TilePuzzle();
+ ~TilePuzzle();
/**
* Processes mouse clicks and changes the combination.