Skip to content

Commit

Permalink
SHERLOCK: Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Aug 1, 2016
1 parent e5a34d1 commit 2b02977
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/sherlock/surface.h
Expand Up @@ -121,7 +121,7 @@ class Surface : public BaseSurface {
virtual void addDirtyRect(const Common::Rect &r) {}
public:
Surface() : BaseSurface() {}
Surface(int width, int height) : BaseSurface(width, height) {}
Surface(int width_, int height_) : BaseSurface(width_, height_) {}
};

} // End of namespace Sherlock
Expand Down

0 comments on commit 2b02977

Please sign in to comment.