1
0
Fork 0

quick fix - first draw grid then ball

This commit is contained in:
rxbn_ 2019-12-13 01:16:04 +01:00
parent 46e689dec3
commit 584d33ae07
1 changed files with 3 additions and 3 deletions

View File

@ -96,12 +96,12 @@ public class Field extends JPanel {
// Setting the color for the following components
g2.setColor(Constants.COLOR_COMPONENT);
// Calls the method for drawing the ball
drawBall(g2);
// Calls the method for drawing the grid
drawGrid(g2);
// Calls the method for drawing the ball
drawBall(g2);
// Calls the method for drawing the bottom paddle
drawPaddleBottom(g2);