summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/EfbInterface.cpp
diff options
context:
space:
mode:
authorMarkus Wick <degasus@users.noreply.github.com>2015-10-17 12:02:55 +0200
committerMarkus Wick <degasus@users.noreply.github.com>2015-10-17 12:02:55 +0200
commit4d3d947efc505fb91d9b4efe6ac137d4590cb655 (patch)
tree31e154fb63b7d8b1cb605e6417793a4c4ced91c4 /Source/Core/VideoBackends/Software/EfbInterface.cpp
parentac8976689b1a960c013281c5a461b1b92294337c (diff)
parentd4e447555e9f5ebd5acab88ae872855fff6896d1 (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.cpp2
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);
}
}
}