diff options
author | Strangerke | 2015-05-08 07:08:46 +0200 |
---|---|---|
committer | Strangerke | 2015-05-08 07:08:46 +0200 |
commit | 9114ca839d0ed46a8bb7123be950343a9ba36c4e (patch) | |
tree | 72cd3f9f972852e136849d8cb4ffe63e17a4e8da | |
parent | 01ed05f295b878758ecf24c02480b2be153a8cf7 (diff) | |
download | scummvm-rg350-9114ca839d0ed46a8bb7123be950343a9ba36c4e.tar.gz scummvm-rg350-9114ca839d0ed46a8bb7123be950343a9ba36c4e.tar.bz2 scummvm-rg350-9114ca839d0ed46a8bb7123be950343a9ba36c4e.zip |
SHERLOCK: Fix the definition of Surface's destructor
-rw-r--r-- | engines/sherlock/graphics.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/graphics.h b/engines/sherlock/graphics.h index 80b692130c..8e1bd438ea 100644 --- a/engines/sherlock/graphics.h +++ b/engines/sherlock/graphics.h @@ -41,7 +41,7 @@ protected: public: Surface(uint16 width, uint16 height); Surface(); - ~Surface(); + virtual ~Surface(); void create(uint16 width, uint16 height); void blitFrom(const Graphics::Surface &src); |