From 34def4f660108632a9526c9ad3195fdb883d206d Mon Sep 17 00:00:00 2001 From: jaseg Date: Thu, 2 Jan 2014 16:43:39 +0100 Subject: Fixed the print loop --- host/matelight/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'host/matelight/main.c') diff --git a/host/matelight/main.c b/host/matelight/main.c index 1fc6cd4..7a23a0a 100644 --- a/host/matelight/main.c +++ b/host/matelight/main.c @@ -76,7 +76,7 @@ int console_render(char *s, glyph_t **glyph_table, unsigned int glyph_table_size x += g->width; } - for(unsigned int y=0; y < gbufheight; y++){ + for(unsigned int y=0; y < gbufheight; y+=2){ for(unsigned int x=0; x < gbufwidth; x++){ //Da magicks: ▀█▄ char c1 = gbuf[y*gbufwidth + x]; -- cgit