From: Patrik Gornicz Date: Fri, 22 Aug 2008 17:03:44 +0000 (-0400) Subject: fixed addition of well at start X-Git-Tag: v0.07~32 X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?p=physics.git;a=commitdiff_plain;h=c0f596e0269bfd114b4ff98c2d7d2855d88e6ef5 fixed addition of well at start --- diff --git a/src/effectManager.cpp b/src/effectManager.cpp index c59decc..a75e5d8 100644 --- a/src/effectManager.cpp +++ b/src/effectManager.cpp @@ -39,11 +39,10 @@ GravityWell* mouseWell; void effect::init() { - mouseWell = new GravityWell(input::mousePosition()); + mouseWell = new GravityWell(Vector2(0,0)); active_Effects.insert(new Screen()); active_Effects.insert(new Gravity()); - active_Effects.insert(mouseWell); } void effect::clean() {