Use bright red instead of hard to see dark grey for debugging of collision
authorIngo Ruhnke <grumbel@gmx.de>
Mon, 22 Feb 2010 18:11:57 +0000 (18:11 +0000)
committerIngo Ruhnke <grumbel@gmx.de>
Mon, 22 Feb 2010 18:11:57 +0000 (18:11 +0000)
SVN-Revision: 6393

src/supertux/sector.cpp

index 2a5fe3d..aa85697 100644 (file)
@@ -863,13 +863,13 @@ Sector::draw(DrawingContext& context)
   }
 
   if(show_collrects) {
-    Color col(0.2f, 0.2f, 0.2f, 0.7f);
+    Color color(1.0f, 0.0f, 0.0f, 0.75f);
     for(MovingObjects::iterator i = moving_objects.begin();
         i != moving_objects.end(); ++i) {
       MovingObject* object = *i;
       const Rectf& rect = object->get_bbox();
 
-      context.draw_filled_rect(rect, col, LAYER_FOREGROUND1 + 10);
+      context.draw_filled_rect(rect, color, LAYER_FOREGROUND1 + 10);
     }
   }