Skip to content

Commit

Permalink
SWORD25: Fix Warnings about Copy Constructor Failing to Call Base Class.
Browse files Browse the repository at this point in the history
  • Loading branch information
digitall committed Jan 16, 2017
1 parent 72dbfe9 commit 5fbb4fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/sword25/gfx/image/renderedimage.h
Expand Up @@ -45,7 +45,7 @@ namespace Sword25 {

class RenderedImage : public Image {
private:
RenderedImage(const RenderedImage &) : _doCleanup(false) {}
RenderedImage(const RenderedImage &) : Image(), _doCleanup(false) {}
RenderedImage &operator=(const RenderedImage &) { return *this; }
public:
RenderedImage(const Common::String &filename, bool &result);
Expand Down

0 comments on commit 5fbb4fc

Please sign in to comment.