Skip to content

Commit

Permalink
fixed TETRIS_COLS back to orig value of 16, even though embedded hw u…
Browse files Browse the repository at this point in the history
…ses 8
  • Loading branch information
0xjmux committed May 4, 2024
1 parent cdf6015 commit 4edc43c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tetris/tetris.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ extern FILE *gamelog;
// max allowed is 128,128 since I want all locations to
// fit in a single byte
#define TETRIS_ROWS 32
#define TETRIS_COLS 8
#define TETRIS_COLS 16
//#define TETRIS_COLS 8


// how many different piece types and orientations
Expand Down Expand Up @@ -173,4 +174,4 @@ uint8_t smallest_in_arr(uint8_t arr[], const uint8_t arr_size);
void int16_to_uint8_arr(int16_t *in_arr, uint8_t *out_arr, uint8_t arr_size);
void uint8_to_int16_arr(uint8_t *in_arr, int16_t *out_arr, uint8_t arr_size);

#endif
#endif

0 comments on commit 4edc43c

Please sign in to comment.