Skip to content

Commit

Permalink
chore: add earthquake to cockcount
Browse files Browse the repository at this point in the history
  • Loading branch information
RodrigoDornelles committed Nov 1, 2023
1 parent d5bf5b0 commit 8fa8f5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/game.c
Original file line number Diff line number Diff line change
Expand Up @@ -316,8 +316,8 @@ void game_loop(void)

/** draw number of coocks **/
roosters_total = roosters_count;
spr = oam_spr((27 * 8), (1 * 8) -1, digit_lockup[1][roosters_count], 3, spr);
spr = oam_spr((28 * 8), (1 * 8) -1, digit_lockup[0][roosters_count], 3, spr);
spr = oam_spr((27 * 8) - eqy, (1 * 8) -1 - eqx, digit_lockup[1][roosters_count], 3, spr);
spr = oam_spr((28 * 8) + eqx, (1 * 8) -1 + eqy, digit_lockup[0][roosters_count], 3, spr);

/* put ret edges **/
oam_edge(MIN_ARENA_X, MIN_ARENA_Y, MAX_ARENA_X, MAX_ARENA_Y);
Expand Down

0 comments on commit 8fa8f5b

Please sign in to comment.