aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorEugene Sandulenko2016-05-16 19:52:34 +0200
committerEugene Sandulenko2016-05-16 19:52:34 +0200
commit875f591704566d72ff437b2b2c7358244a999a67 (patch)
tree06724cdb6db82ff8c26c219685695cf8c779c3a4 /engines
parent03344d926f336f72e588edef074755fc8f204e6c (diff)
downloadscummvm-rg350-875f591704566d72ff437b2b2c7358244a999a67.tar.gz
scummvm-rg350-875f591704566d72ff437b2b2c7358244a999a67.tar.bz2
scummvm-rg350-875f591704566d72ff437b2b2c7358244a999a67.zip
SHERLOCK: Further clarification of virtual destructors. Thanks to LordHoto.
Diffstat (limited to 'engines')
-rw-r--r--engines/sherlock/image_file.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/image_file.h b/engines/sherlock/image_file.h
index 9c7612d020..0ae7cc1dcb 100644
--- a/engines/sherlock/image_file.h
+++ b/engines/sherlock/image_file.h
@@ -95,7 +95,7 @@ public:
ImageFile();
ImageFile(const Common::String &name, bool skipPal = false, bool animImages = false);
ImageFile(Common::SeekableReadStream &stream, bool skipPal = false);
- ~ImageFile();
+ virtual ~ImageFile();
static void setVm(SherlockEngine *vm);
};