diff options
| author | Ryan Houdek <Sonicadvance1@gmail.com> | 2015-09-10 13:56:43 -0400 |
|---|---|---|
| committer | Ryan Houdek <Sonicadvance1@gmail.com> | 2015-09-10 13:56:43 -0400 |
| commit | 3014feedc839d69931079ad3c4f645ef51055e1a (patch) | |
| tree | 07855c50da98ae185adbc250ffed2b852d1bc11e /Source/Core/VideoCommon/Debugger.cpp | |
| parent | 257f2ef739793b571fdbc72356a3d8f2de325bee (diff) | |
| parent | 74b20e627ca524366b0a4fa617d59014cd2c967c (diff) | |
Merge pull request #3012 from degasus/destAlpha
VideoCommon: Drop "Disable destAlpha" hack
Diffstat (limited to 'Source/Core/VideoCommon/Debugger.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/Debugger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/Debugger.cpp b/Source/Core/VideoCommon/Debugger.cpp index 755293b26c..24ec679400 100644 --- a/Source/Core/VideoCommon/Debugger.cpp +++ b/Source/Core/VideoCommon/Debugger.cpp @@ -82,7 +82,7 @@ void GFXDebuggerBase::DumpPixelShader(const std::string& path) const std::string filename = StringFromFormat("%sdump_ps.txt", path.c_str()); std::string output; - bool useDstAlpha = !g_ActiveConfig.bDstAlphaPass && bpmem.dstalpha.enable && bpmem.blendmode.alphaupdate && bpmem.zcontrol.pixel_format == PEControl::RGBA6_Z24; + bool useDstAlpha = bpmem.dstalpha.enable && bpmem.blendmode.alphaupdate && bpmem.zcontrol.pixel_format == PEControl::RGBA6_Z24; if (!useDstAlpha) { output = "Destination alpha disabled:\n"; |
