diff options
Diffstat (limited to 'engines/lab/image.h')
-rw-r--r-- | engines/lab/image.h | 2 |
1 files changed, 1 insertions, 1 deletions
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. |