libgambatte/ppu: superflous mask

This commit is contained in:
sinamas 2013-02-25 20:50:41 +01:00
parent 3014b1edaf
commit f70cf21f38

View File

@ -624,7 +624,7 @@ static void doFullTilesUnrolledCgb(PPUPriv &p, const int xend, uint_least32_t *c
} while (i >= 0 && int(p.spriteList[i].spx) > xpos - 8);
} else {
unsigned char idtab[8] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
const unsigned bgenmask = p.lcdc << 7 & 0x80;
const unsigned bgenmask = p.lcdc << 7;
do {
int n;