diff --git a/framebuffer.c b/framebuffer.c index af1f67c..ac7cc29 100644 --- a/framebuffer.c +++ b/framebuffer.c @@ -19,21 +19,17 @@ void write_cell_fb(unsigned cell, char c, char fg, char bg) { Frame_Buffer[cell+1] = (fg & 0x0f << 4) | (bg & 0x0f); } -/* should be passing in a cell-position for position param*/ -void print_fb(char* str, unsigned position) { - unsigned relative_end = position + strlen(str); - for(unsigned i = position; i