From: Matthias Braun Date: Mon, 13 Jun 2005 17:20:57 +0000 (+0000) Subject: don't play with the magic constants... X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=3ead9f5a495c7491e0f2cff256d392c88c38f31e;p=supertux.git don't play with the magic constants... SVN-Revision: 2603 --- diff --git a/src/sector.cpp b/src/sector.cpp index 81f359178..4fab8ba57 100644 --- a/src/sector.cpp +++ b/src/sector.cpp @@ -578,7 +578,7 @@ Sector::draw(DrawingContext& context) context.pop_transform(); } -static const float DELTA = .0001; +static const float DELTA = .001; void Sector::collision_tilemap(MovingObject* object, int depth)