summaryrefslogtreecommitdiffstats
path: root/Room.h
diff options
context:
space:
mode:
Diffstat (limited to 'Room.h')
-rw-r--r--Room.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Room.h b/Room.h
index 855a00c..e1fdd92 100644
--- a/Room.h
+++ b/Room.h
@@ -39,7 +39,7 @@ class Room : public LevelObject, private VertexProvider, private EdgeProvider {
const Polygon& getPolygon() const {return polygon;}
- virtual bool hit(const Vertex &v, float scale) const {return polygon.contains(v);}
+ virtual bool hit(const Vertex &v) const {return polygon.contains(v);}
virtual int getPriority() const {return 0;}
virtual std::vector<SharedPtr<LevelObject> > getChildren();