summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorZephyrLabs <65145081+ZephyrLabs@users.noreply.github.com>2020-12-20 09:28:51 +0530
committerZephyrLabs <65145081+ZephyrLabs@users.noreply.github.com>2020-12-20 09:28:51 +0530
commit020840e04fb922db509a9f1289e1c856801566da (patch)
treed128d0c5fb2b8eda4efbecb12857a050b8e397c2 /src
parentb098d27d086733fad3d6c4e04385b73e0c123ef8 (diff)
Update Paddle.h
fix uppercase
Diffstat (limited to 'src')
-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