diff options
author | Eugene Sandulenko | 2016-05-16 19:52:34 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-05-16 19:52:34 +0200 |
commit | 875f591704566d72ff437b2b2c7358244a999a67 (patch) | |
tree | 06724cdb6db82ff8c26c219685695cf8c779c3a4 | |
parent | 03344d926f336f72e588edef074755fc8f204e6c (diff) | |
download | scummvm-rg350-875f591704566d72ff437b2b2c7358244a999a67.tar.gz scummvm-rg350-875f591704566d72ff437b2b2c7358244a999a67.tar.bz2 scummvm-rg350-875f591704566d72ff437b2b2c7358244a999a67.zip |
SHERLOCK: Further clarification of virtual destructors. Thanks to LordHoto.
-rw-r--r-- | engines/sherlock/image_file.h | 2 |
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); }; |