From 598fa0d50dedfcb47a8d88144ce9e37583aec23d Mon Sep 17 00:00:00 2001 From: Patrik Gornicz Date: Sun, 21 Sep 2008 20:34:31 -0400 Subject: [PATCH] added more start balls to slow things down on my desktop ... --- src/entityCreator.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/entityCreator.cpp b/src/entityCreator.cpp index fa16ae2..28d6979 100644 --- a/src/entityCreator.cpp +++ b/src/entityCreator.cpp @@ -73,6 +73,11 @@ void creator::init() ball = addBall(Vector2(150, 150), 20, cCyan, startBalls); ball->mass = startMass; + + for( int i = 0; i<100; i++) + { + addBall(Vector2(200+i*2, 200+i*2), 10, cCyan); + } } void creator::clean() { -- 2.10.2