- fix a bunch of msvc warnings (mostly assigning double constants to float variables)
[supertux.git] / src / badguy / bouncing_snowball.hpp
index 371d60a..ed2c5cb 100644 (file)
@@ -36,7 +36,7 @@ public:
   virtual BouncingSnowball* clone() const { return new BouncingSnowball(*this); }
 
 protected:
-  bool collision_squished(Player& player);
+  bool collision_squished(GameObject& object);
 };
 
 #endif