From 020840e04fb922db509a9f1289e1c856801566da Mon Sep 17 00:00:00 2001 From: ZephyrLabs <65145081+ZephyrLabs@users.noreply.github.com> Date: Sun, 20 Dec 2020 09:28:51 +0530 Subject: [PATCH] Update Paddle.h fix uppercase --- src/displayapp/screens/Paddle.h | 8 ++++---- 1 file 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