소스 검색

Reduce max bullets for increased difficulty

SimplyMinimal 3 년 전
부모
커밋
d05a98010f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app.c

+ 1 - 1
app.c

@@ -42,7 +42,7 @@ typedef struct Asteroid {
     uint8_t shape_seed; /* Seed to give random shape. */
 } Asteroid;
 
-#define MAXBUL 10 /* Max bullets on the screen. */
+#define MAXBUL 5 /* Max bullets on the screen. */
 #define MAXAST 32 /* Max asteroids on the screen. */
 #define SHIP_HIT_ANIMATION_LEN 15
 typedef struct AsteroidsApp {