diff options
author | Eugene Sandulenko | 2016-05-16 16:46:43 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-05-16 16:56:57 +0200 |
commit | f6d8e0f5ed0ad40918912e3ec07ab658bdaaa147 (patch) | |
tree | e198a9a63c7fc3be53710f2b2432ac44b713152f | |
parent | 1d5a127011874f83fed44b7062143badb8447839 (diff) | |
download | scummvm-rg350-f6d8e0f5ed0ad40918912e3ec07ab658bdaaa147.tar.gz scummvm-rg350-f6d8e0f5ed0ad40918912e3ec07ab658bdaaa147.tar.bz2 scummvm-rg350-f6d8e0f5ed0ad40918912e3ec07ab658bdaaa147.zip |
SCI: Add virtual destructor
-rw-r--r-- | engines/sci/graphics/helpers.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/sci/graphics/helpers.h b/engines/sci/graphics/helpers.h index 19dddd74b8..cdb7d1193b 100644 --- a/engines/sci/graphics/helpers.h +++ b/engines/sci/graphics/helpers.h @@ -91,6 +91,8 @@ struct Window : public Port, public Common::Serializable { bDrawn(false) { } + ~Window() {} + void syncRect(Common::Serializer &ser, Common::Rect &targetRect) { ser.syncAsSint16LE(targetRect.top); ser.syncAsSint16LE(targetRect.left); |