From c0f596e0269bfd114b4ff98c2d7d2855d88e6ef5 Mon Sep 17 00:00:00 2001 From: Patrik Gornicz Date: Fri, 22 Aug 2008 13:03:44 -0400 Subject: [PATCH] fixed addition of well at start --- src/effectManager.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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() { -- 2.10.2