Skip to content

Commit

Permalink
Merge pull request #76 from pce-devel/pceDev16-hucc-shmup-patch-2
Browse files Browse the repository at this point in the history
Update shmup.c
  • Loading branch information
jbrandwood authored Feb 15, 2025
2 parents 5606dd7 + d8409be commit 11d5bb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/hucc/shmup/shmup.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const unsigned char aSpriteDataBank[] = {

struct bullet {
int x, y;
char active;
signed char active;
};

struct bullet bullets[MAX_BULLETS];
Expand Down Expand Up @@ -147,7 +147,7 @@ void main(void)
unsigned int tic;
unsigned char i, j;
unsigned char bullet_wait;
char bonk_dir;
signed char bonk_dir;
char r;
unsigned char dead;
struct ship *sp;
Expand Down

0 comments on commit 11d5bb5

Please sign in to comment.