summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/Paddle.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/displayapp/screens/Paddle.h')
-rw-r--r--src/displayapp/screens/Paddle.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/displayapp/screens/Paddle.h b/src/displayapp/screens/Paddle.h
index ab575840..358bd2f5 100644
--- a/src/displayapp/screens/Paddle.h
+++ b/src/displayapp/screens/Paddle.h
@@ -24,11 +24,11 @@ namespace Pinetime {
private:
Pinetime::Components::LittleVgl& lvgl;
- int PaddleBottomY = 90; // bottom extreme of the paddle
- int PaddleTopY = 150; //top extreme of the paddle
+ int paddleBottomY = 90; // bottom extreme of the paddle
+ int paddleTopY = 150; //top extreme of the paddle
- int BallX = 107; // Initial x_coordinate for the ball (12px offset from the center to counteract the ball's 24px size)
- int BallY = 107; // Initial y_coordinate for the ball
+ int ballX = 107; // Initial x_coordinate for the ball (12px offset from the center to counteract the ball's 24px size)
+ int ballY = 107; // Initial y_coordinate for the ball
int dx = 2; // Velocity of the ball in the x_coordinate
int dy = 3; // Velocity of the ball in the y_coordinate