aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/surface.h
diff options
context:
space:
mode:
authorEugene Sandulenko2016-08-01 11:46:18 +0300
committerEugene Sandulenko2016-08-01 11:46:18 +0300
commit2b0297755de045a62af1c59e5df24a144de205ea (patch)
tree1fdcd62e14135cae9f0a37bcba6faa0f140776b8 /engines/sherlock/surface.h
parente5a34d1353c9303e5225fcdce6064329b6723022 (diff)
downloadscummvm-rg350-2b0297755de045a62af1c59e5df24a144de205ea.tar.gz
scummvm-rg350-2b0297755de045a62af1c59e5df24a144de205ea.tar.bz2
scummvm-rg350-2b0297755de045a62af1c59e5df24a144de205ea.zip
SHERLOCK: Fix warning
Diffstat (limited to 'engines/sherlock/surface.h')
-rw-r--r--engines/sherlock/surface.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/surface.h b/engines/sherlock/surface.h
index 401d9b648d..d55606ed82 100644
--- a/engines/sherlock/surface.h
+++ b/engines/sherlock/surface.h
@@ -121,7 +121,7 @@ protected:
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