* The "time needed" statistic now works again. You might need to delete your savegame...
[supertux.git] / src / object / path.cpp
index 941e9d0..251afd0 100644 (file)
@@ -34,7 +34,7 @@
 Path::Path(const lisp::Lisp& reader)
 {
   forward = true;
-  float x,y;
+  float x = 0, y = 0;
 
   lisp::ListIterator iter(&reader);
 
@@ -94,7 +94,7 @@ Path::update(float elapsed_time)
 }
 
 void
-Path::draw(DrawingContext& context)
+Path::draw(DrawingContext& )
 {
    // TODO: Add a visible flag, draw the path if true
 }