MX 2 years ago
parent
commit
b77d9e3d01
1 changed files with 1 additions and 6 deletions
  1. 1 6
      main_apps_sources/flappy_bird/flappy_bird.c

+ 1 - 6
main_apps_sources/flappy_bird/flappy_bird.c

@@ -29,12 +29,7 @@ typedef enum {
     EventTypeKey,
 } EventType;
 
-typedef enum {
-    BirdState0 = 0,
-    BirdState1,
-    BirdState2,
-    BirdStateMAX
-} BirdState;
+typedef enum { BirdState0 = 0, BirdState1, BirdState2, BirdStateMAX } BirdState;
 
 const Icon* bird_states[BirdStateMAX] = {
     &I_bird_01,