From d4e447555e9f5ebd5acab88ae872855fff6896d1 Mon Sep 17 00:00:00 2001 From: degasus Date: Sat, 10 Oct 2015 11:10:37 +0200 Subject: [PATCH] VideoSW: Wipe alpha on bypass EFB Alpha must not be displayed. --- Source/Core/VideoBackends/Software/EfbInterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/VideoBackends/Software/EfbInterface.cpp b/Source/Core/VideoBackends/Software/EfbInterface.cpp index ff9636d6c3..ca6221ef26 100644 --- a/Source/Core/VideoBackends/Software/EfbInterface.cpp +++ b/Source/Core/VideoBackends/Software/EfbInterface.cpp @@ -575,7 +575,7 @@ namespace EfbInterface for (u16 x = left; x < right; x++) { GetColor(x, y, colorPtr); - texturePtr[textureAddress++] = Common::swap32(color); + texturePtr[textureAddress++] = Common::swap32(color | 0xFF); } } }