Merge pull request #3157 from degasus/videosw3

VideoSW: Wipe alpha on bypass EFB
This commit is contained in:
Markus Wick
2015-10-17 12:02:55 +02:00

View File

@ -575,7 +575,7 @@ namespace EfbInterface
for (u16 x = left; x < right; x++) for (u16 x = left; x < right; x++)
{ {
GetColor(x, y, colorPtr); GetColor(x, y, colorPtr);
texturePtr[textureAddress++] = Common::swap32(color); texturePtr[textureAddress++] = Common::swap32(color | 0xFF);
} }
} }
} }