- added missing virtual destructor to DFrameBuffer.

Previously it inherited this from DCanvas but now both classes are no longer related.
This commit is contained in:
Christoph Oelckers 2018-03-30 22:03:50 +02:00
parent ff19627251
commit ec8804cfd8

View file

@ -304,6 +304,7 @@ protected:
public:
DFrameBuffer (int width, int height, bool bgra);
virtual ~DFrameBuffer() {}
inline int GetWidth() const { return Width; }
inline int GetHeight() const { return Height; }