diff options
| author | Markus Wick <degasus@users.noreply.github.com> | 2015-10-17 12:02:55 +0200 |
|---|---|---|
| committer | Markus Wick <degasus@users.noreply.github.com> | 2015-10-17 12:02:55 +0200 |
| commit | 4d3d947efc505fb91d9b4efe6ac137d4590cb655 (patch) | |
| tree | 31e154fb63b7d8b1cb605e6417793a4c4ced91c4 /Source/Core/VideoBackends/Software/EfbInterface.cpp | |
| parent | ac8976689b1a960c013281c5a461b1b92294337c (diff) | |
| parent | d4e447555e9f5ebd5acab88ae872855fff6896d1 (diff) | |
Merge pull request #3157 from degasus/videosw3
VideoSW: Wipe alpha on bypass EFB
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); } } } |
