ppu: resize already calls clear, no need for repetition

This commit is contained in:
Sigrid Solveig Haflínudóttir 2021-12-24 23:27:07 +01:00
parent 8a25a5e387
commit db957f4dbb
1 changed files with 0 additions and 1 deletions

View File

@ -67,7 +67,6 @@ ppu_resize(Ppu *p, Uint16 width, Uint16 height)
p->height = height;
ppu_clear(p, &p->bg);
ppu_clear(p, &p->fg);
p->fg.changed = p->bg.changed = 1;
}
void