diff options
| author | iwubcode <iwubcode@users.noreply.github.com> | 2025-10-31 13:15:15 -0500 |
|---|---|---|
| committer | iwubcode <iwubcode@users.noreply.github.com> | 2025-10-31 13:28:14 -0500 |
| commit | 6728007cb4832c80745df73f980ccff53691368f (patch) | |
| tree | 2ba1884b27ec00edef7b27462d55451049e69686 /Source/Core/VideoBackends/Software/Rasterizer.cpp | |
| parent | ee7c476e24d59af2c6b8e24486cd08ff09946112 (diff) | |
VideoCommon: rename ScissorResult 'm_result' to 'rectangles' to better reflect what the member is
Diffstat (limited to 'Source/Core/VideoBackends/Software/Rasterizer.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Software/Rasterizer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoBackends/Software/Rasterizer.cpp b/Source/Core/VideoBackends/Software/Rasterizer.cpp index ebd6033ae4..2839e05b73 100644 --- a/Source/Core/VideoBackends/Software/Rasterizer.cpp +++ b/Source/Core/VideoBackends/Software/Rasterizer.cpp @@ -116,7 +116,7 @@ void ScissorChanged() { auto scissor_result = BPFunctions::ComputeScissorRects(bpmem.scissorTL, bpmem.scissorBR, bpmem.scissorOffset, xfmem.viewport); - scissors = std::move(scissor_result.m_result); + scissors = std::move(scissor_result.rectangles); } // Returns approximation of log2(f) in s28.4 |
