diff options
| author | degasus <wickmarkus@web.de> | 2015-10-10 11:10:37 +0200 |
|---|---|---|
| committer | degasus <wickmarkus@web.de> | 2015-10-10 11:45:39 +0200 |
| commit | d4e447555e9f5ebd5acab88ae872855fff6896d1 (patch) | |
| tree | b4ffcb5de76232cf02985f68ca76073653c084be /Source/Core/VideoBackends/Software/EfbInterface.cpp | |
| parent | e955a3a1910f7648f2577531d62694cab675d616 (diff) | |
VideoSW: Wipe alpha on bypass EFB
Alpha must not be displayed.
Diffstat (limited to 'Source/Core/VideoBackends/Software/EfbInterface.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Software/EfbInterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); } } } |
