diff options
| author | ZephyrLabs <65145081+ZephyrLabs@users.noreply.github.com> | 2020-12-20 03:58:51 (GMT) |
|---|---|---|
| committer | ZephyrLabs <65145081+ZephyrLabs@users.noreply.github.com> | 2020-12-20 03:58:51 (GMT) |
| commit | 020840e04fb922db509a9f1289e1c856801566da (patch) | |
| tree | d128d0c5fb2b8eda4efbecb12857a050b8e397c2 /src/displayapp | |
| parent | b098d27d086733fad3d6c4e04385b73e0c123ef8 (diff) | |
Update Paddle.h
fix uppercase
Diffstat (limited to 'src/displayapp')
| -rw-r--r-- | src/displayapp/screens/Paddle.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/displayapp/screens/Paddle.h b/src/displayapp/screens/Paddle.h index ab57584..358bd2f 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 |
