summaryrefslogtreecommitdiffhomepage
path: root/games/cat_vs_roomba/screens/screen_logo.c
diff options
context:
space:
mode:
Diffstat (limited to 'games/cat_vs_roomba/screens/screen_logo.c')
-rw-r--r--games/cat_vs_roomba/screens/screen_logo.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/games/cat_vs_roomba/screens/screen_logo.c b/games/cat_vs_roomba/screens/screen_logo.c
index a697013e..1d8fa978 100644
--- a/games/cat_vs_roomba/screens/screen_logo.c
+++ b/games/cat_vs_roomba/screens/screen_logo.c
@@ -33,22 +33,22 @@
//----------------------------------------------------------------------------------
// Logo screen global variables
-static int framesCounter;
-static int finishScreen;
+static int framesCounter = 0;
+static int finishScreen = 0;
-static int logoPositionX;
-static int logoPositionY;
+static int logoPositionX = 0;
+static int logoPositionY = 0;
-static int lettersCount;
+static int lettersCount = 0;
-static int topSideRecWidth;
-static int leftSideRecHeight;
+static int topSideRecWidth = 0;
+static int leftSideRecHeight = 0;
-static int bottomSideRecWidth;
-static int rightSideRecHeight;
+static int bottomSideRecWidth = 0;
+static int rightSideRecHeight = 0;
-static char raylib[8]; // raylib text array, max 8 letters
-static int state; // Tracking animation states (State Machine)
+static char raylib[8] = { 0 }; // raylib text array, max 8 letters
+static int state = 0; // Tracking animation states (State Machine)
static float alpha = 1.0f; // Useful for fading
//----------------------------------------------------------------------------------