changed function signature of write_cell

This commit is contained in:
shockrahwow 2019-01-18 12:46:49 -08:00
parent 835e9ee6f0
commit 2600868abd

View File

@ -2,6 +2,6 @@
#define ROWS 25 #define ROWS 25
#define AREA ( COLUMNS * ROWS ) #define AREA ( COLUMNS * ROWS )
void write_cell(const unsigned cell, const char c , const char fg_bg); void write_cell(unsigned cell, char c , char fg, char bg);
void hello(); void hello();