mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 07:11:54 +00:00
- 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:
parent
ff19627251
commit
ec8804cfd8
1 changed files with 1 additions and 0 deletions
|
@ -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; }
|
||||
|
|
Loading…
Reference in a new issue