Bug 938: Fixed some compiler warnings under Mac OS X
authorLMH <lmh.0013@gmail.com>
Wed, 6 Feb 2013 19:37:02 +0000 (09:37 -1000)
committerLMH <lmh.0013@gmail.com>
Wed, 6 Feb 2013 19:37:02 +0000 (09:37 -1000)
src/supertux/collision.cpp
src/supertux/tile.cpp

index 95fbbbb..4e1c601 100644 (file)
@@ -54,7 +54,7 @@ bool rectangle_aatriangle(Constraints* constraints, const Rectf& rect,
     return false;
 
   Vector normal;
-  float c;
+  float c = 0.0;
   Vector p1;
   Rectf area;
   switch(triangle.dir & AATriangle::DEFORM_MASK) {
index d29a6c5..b815953 100644 (file)
@@ -271,8 +271,8 @@ bool Tile::check_position_unisolid (const Rectf& obj_bbox,
   float gradient;
   float delta_x;
   float delta_y;
-  float obj_x;
-  float obj_y;
+  float obj_x = 0.0;
+  float obj_y = 0.0;
 
   /* If this is not a slope, this is - again - easy */
   if (!this->is_slope())