ppu_write: remove duplicate condition we already checked for
This commit is contained in:
parent
4b5183cf0d
commit
ca5675419e
|
@ -61,8 +61,7 @@ ppu_write(Ppu *p, Uint8 layer, Uint16 x, Uint16 y, Uint8 color)
|
|||
Uint8 pix = p->pixels[row];
|
||||
Uint8 mask = ~(0x3 << shift);
|
||||
Uint8 pixnew = (pix & mask) + (color << shift);
|
||||
if(x < p->width && y < p->height)
|
||||
p->pixels[row] = pixnew;
|
||||
p->pixels[row] = pixnew;
|
||||
if(pix != pixnew)
|
||||
p->reqdraw = 1;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue