fixed addition of well at start
authorPatrik Gornicz <Gornicz.P@gmail.com>
Fri, 22 Aug 2008 17:03:44 +0000 (13:03 -0400)
committerPatrik Gornicz <Gornicz.P@gmail.com>
Fri, 22 Aug 2008 17:03:44 +0000 (13:03 -0400)
src/effectManager.cpp

index c59decc..a75e5d8 100644 (file)
@@ -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()
 {