diff --git a/core/src/com/me/brickbuster/BrickBuster.java b/core/src/com/me/brickbuster/BrickBuster.java index 920e035..7e2c1c8 100644 --- a/core/src/com/me/brickbuster/BrickBuster.java +++ b/core/src/com/me/brickbuster/BrickBuster.java @@ -30,9 +30,9 @@ public class BrickBuster extends ApplicationAdapter { paddle = new Paddle(this); bricks = new ArrayList(); for (int col = 0; col < 13; col++) { - for (int row = 0; row < 10; row++) { + for (int row = 0; row < 7; row++) { int x = 15 + (col * (Brick.BLOCK_WIDTH + 10)); - int y = 15 + Brick.BLOCK_HEIGHT + (row * (Brick.BLOCK_HEIGHT + 5)); + int y = 15 + Brick.BLOCK_HEIGHT + (row * (Brick.BLOCK_HEIGHT + 10)); bricks.add(new Brick(this, x, HEIGHT - y)); } }