diff --git a/core/src/com/me/brickbuster/entity/Ball.java b/core/src/com/me/brickbuster/entity/Ball.java index 1797895..2e78c1a 100644 --- a/core/src/com/me/brickbuster/entity/Ball.java +++ b/core/src/com/me/brickbuster/entity/Ball.java @@ -21,7 +21,7 @@ public class Ball extends Entity { public void render() { getShapeRenderer().begin(ShapeRenderer.ShapeType.Filled); getShapeRenderer().setColor(BALL_COLOR); - getShapeRenderer().circle(this.getX(), this.getY(), RADIUS, 50); + getShapeRenderer().circle(this.getX(), this.getY(), RADIUS); getShapeRenderer().end(); } diff --git a/core/src/com/me/brickbuster/entity/Paddle.java b/core/src/com/me/brickbuster/entity/Paddle.java index 19702b0..f12f594 100644 --- a/core/src/com/me/brickbuster/entity/Paddle.java +++ b/core/src/com/me/brickbuster/entity/Paddle.java @@ -11,7 +11,7 @@ public class Paddle extends Entity { public static final Color PADDLE_COLOR = Color.BLACK; public static final int PADDLE_WIDTH = 100; public static final int PADDLE_HEIGHT = 16; - public static final int PADDLE_Y = 50; + public static final int PADDLE_Y = 25; public Paddle(BrickBuster brickBuster) { super(brickBuster, BrickBuster.WIDTH/2, PADDLE_Y);