minor fixes
This commit is contained in:
parent
2870a5fc9a
commit
669c37029a
@ -214,7 +214,7 @@ public class Ball implements IBall {
|
|||||||
// only two paddles defined in the game design, therefore greater or smaller than middle of screen
|
// only two paddles defined in the game design, therefore greater or smaller than middle of screen
|
||||||
|
|
||||||
//deciding if the paddle is at the top or bottom to adjust if its +or- y direction
|
//deciding if the paddle is at the top or bottom to adjust if its +or- y direction
|
||||||
if (paddle.getPosition().getY() <= Constants.SCREEN_HEIGHT/2) {
|
if (paddle.getPosition().getY() <= Constants.SCREEN_HEIGHT/2.0) {
|
||||||
// top paddle
|
// top paddle
|
||||||
reflectionPoint.setY(reflectionPoint.getY() - Constants.REFLECTION_OFFSET);
|
reflectionPoint.setY(reflectionPoint.getY() - Constants.REFLECTION_OFFSET);
|
||||||
} else {
|
} else {
|
||||||
|
@ -119,7 +119,7 @@ public class Stone implements IStone {
|
|||||||
switch(type) {
|
switch(type) {
|
||||||
// multi-case, hacky, but dont care
|
// multi-case, hacky, but dont care
|
||||||
case 0:
|
case 0:
|
||||||
// naah, isnt a stone
|
// nah, isn't a stone
|
||||||
default:
|
default:
|
||||||
// default case, not in range
|
// default case, not in range
|
||||||
// setting to not a stone
|
// setting to not a stone
|
||||||
|
Loading…
x
Reference in New Issue
Block a user