clang-format

This commit is contained in:
Andrew Alderwick 2021-09-21 21:20:22 +01:00
parent 65678a7a36
commit f38ba34310
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ ppu_pixel(Ppu *p, int fg, Uint16 x, Uint16 y, Uint8 color)
if(fg) shift += 2;
p->dat[i] &= ~(3 << shift);
p->dat[i] |= color << shift;
if((v ^ p->dat[i]) != 0){
if((v ^ p->dat[i]) != 0) {
p->redraw = 1;
p->i0 = p->i0 < i ? p->i0 : i;
p->i1 = p->i1 > i ? p->i1 : i;