From 2600868abdbc04f5196da33f50158cc66e4364a6 Mon Sep 17 00:00:00 2001 From: shockrahwow Date: Fri, 18 Jan 2019 12:46:49 -0800 Subject: [PATCH] changed function signature of write_cell --- framebuffer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framebuffer.h b/framebuffer.h index 0ac75f7..515e1bd 100644 --- a/framebuffer.h +++ b/framebuffer.h @@ -2,6 +2,6 @@ #define ROWS 25 #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(); \ No newline at end of file