d3d9/tests: Remove no-op binary & with all 1's (PVS-Studio).

oldstable
Michael Stefaniuc 2015-03-06 10:24:36 +01:00 committed by Alexandre Julliard
parent 7c4d45c00b
commit 3730c99c28
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ static DWORD getPixelColorFromSurface(IDirect3DSurface9 *surface, UINT x, UINT y
switch(desc.Format) {
case D3DFMT_A8R8G8B8:
{
color = ((DWORD *) lockedRect.pBits)[0] & 0xffffffff;
color = ((DWORD *) lockedRect.pBits)[0];
break;
}
default: