Fixed the print loop
This commit is contained in:
parent
8192aca05a
commit
34def4f660
1 changed files with 1 additions and 1 deletions
|
|
@ -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];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue