Removed mispaste code in ppu

This commit is contained in:
neauoire 2021-07-31 10:48:58 -07:00
parent 564b3207e7
commit 319f5f9238
1 changed files with 0 additions and 9 deletions

View File

@ -93,12 +93,3 @@ initppu(Ppu *p, Uint8 hor, Uint8 ver)
clear(p); clear(p);
return 1; return 1;
} }
;
p->height = 8 * p->ver;
if(!(p->bg.pixels = malloc(p->width * p->height * sizeof(Uint32))))
return 0;
if(!(p->fg.pixels = malloc(p->width * p->height * sizeof(Uint32))))
return 0;
clear(p);
return 1;
}