Removed unneeded parenthesis

This commit is contained in:
PokeCodec
2020-08-25 16:08:37 -04:00
parent bf1e261177
commit ba853d6b39
+3 -3
View File
@@ -397,16 +397,16 @@ static void _InitContestMonPixels(u8 *spriteGfx, u16 *palette, u16 (*destPixels)
{ {
for (pixelX = 0; pixelX < 8; pixelX++) for (pixelX = 0; pixelX < 8; pixelX++)
{ {
colorIndex = spriteGfx[(((tileY * 8) + tileX) * 32) + (pixelY << 2) + (pixelX >> 1)]; colorIndex = spriteGfx[((tileY * 8) + tileX) * 32 + (pixelY << 2) + (pixelX >> 1)];
if (pixelX & 1) if (pixelX & 1)
colorIndex >>= 4; colorIndex >>= 4;
else else
colorIndex &= 0xF; // %=16 works here too. Both match colorIndex &= 0xF; // %=16 works here too. Both match
if (colorIndex == 0) // transparent pixel if (colorIndex == 0) // transparent pixel
(*destPixels)[((tileY * 8) + pixelY)][((tileX * 8) + pixelX)] = 0x8000; (*destPixels)[(tileY * 8 + pixelY)][(tileX * 8 + pixelX)] = 0x8000;
else else
(*destPixels)[((tileY * 8) + pixelY)][((tileX * 8) + pixelX)] = palette[colorIndex]; (*destPixels)[(tileY * 8 + pixelY)][(tileX * 8 + pixelX)] = palette[colorIndex];
} }
} }
} }