Fixed compiler warnings, see bug962
[supertux.git] / src / object / rainsplash.cpp
index 3ad899a..d03b014 100644 (file)
@@ -39,7 +39,7 @@ RainSplash::hit(Player& )
 void
 RainSplash::update(float time)
 {
-  time = 0;//just so i don't get an "unused variable" error - don't know how to circumvent this
+  (void) time;
   frame++;
   if (frame >= 10) remove_me();
 }