aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorStrangerke2015-05-08 07:08:46 +0200
committerStrangerke2015-05-08 07:08:46 +0200
commit9114ca839d0ed46a8bb7123be950343a9ba36c4e (patch)
tree72cd3f9f972852e136849d8cb4ffe63e17a4e8da /engines
parent01ed05f295b878758ecf24c02480b2be153a8cf7 (diff)
downloadscummvm-rg350-9114ca839d0ed46a8bb7123be950343a9ba36c4e.tar.gz
scummvm-rg350-9114ca839d0ed46a8bb7123be950343a9ba36c4e.tar.bz2
scummvm-rg350-9114ca839d0ed46a8bb7123be950343a9ba36c4e.zip
SHERLOCK: Fix the definition of Surface's destructor
Diffstat (limited to 'engines')
-rw-r--r--engines/sherlock/graphics.h2
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);