diff options
| author | Scott Mansell <phiren@gmail.com> | 2016-05-18 08:21:02 +1200 |
|---|---|---|
| committer | Stenzek <stenzek@gmail.com> | 2018-04-29 17:56:51 +1000 |
| commit | fc96479f122d3b2fdd9a5191c67ebce811ff569d (patch) | |
| tree | eff66e79fb109110349a0aea3e571e9584c30d73 /Source/Core/VideoCommon/BPStructs.cpp | |
| parent | 0cd46f4d21ff86fddd7d9a67a2921ac0299209b3 (diff) | |
VideoSoftware: Implement xfb copy filter (Deflickering/Brightness)
Diffstat (limited to 'Source/Core/VideoCommon/BPStructs.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/BPStructs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/BPStructs.cpp b/Source/Core/VideoCommon/BPStructs.cpp index 4647c3de4e..143132ecaf 100644 --- a/Source/Core/VideoCommon/BPStructs.cpp +++ b/Source/Core/VideoCommon/BPStructs.cpp @@ -1015,9 +1015,9 @@ void GetBPRegInfo(const u8* data, std::string* name, std::string* desc) "Copy to XFB: %s\n" "Intensity format: %s\n" "Automatic color conversion: %s", - (copy.clamp0 && copy.clamp1) ? + (copy.clamp_top && copy.clamp_bottom) ? "Top and Bottom" : - (copy.clamp0) ? "Top only" : (copy.clamp1) ? "Bottom only" : "None", + (copy.clamp_top) ? "Top only" : (copy.clamp_bottom) ? "Bottom only" : "None", no_yes[copy.yuv], static_cast<int>(copy.tp_realFormat()), (copy.gamma == 0) ? "1.0" : |
