Fixed the print loop

This commit is contained in:
jaseg 2014-01-02 16:43:39 +01:00
parent 8192aca05a
commit 34def4f660

View file

@ -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];