Fixed AbstractImage destructor not being virtual

Former-commit-id: fd93b711d9b4ffbd370a61d1a7515da71e3d6001
This commit is contained in:
Lynix 2015-01-16 12:53:23 +01:00
parent e36e8a21e0
commit 40db7a7292
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ class NAZARA_API NzAbstractImage
{
public:
NzAbstractImage() = default;
~NzAbstractImage();
virtual ~NzAbstractImage();
nzUInt8 GetBytesPerPixel() const;
virtual unsigned int GetDepth(nzUInt8 level = 0) const = 0;