diff options
| author | iwubcode <iwubcode@users.noreply.github.com> | 2025-08-23 13:35:05 -0500 |
|---|---|---|
| committer | iwubcode <iwubcode@users.noreply.github.com> | 2025-08-23 13:50:22 -0500 |
| commit | 14459bcc1b8d58bedfd68b6f15ab160a284c821e (patch) | |
| tree | d2c12a7cac6eef4f2f727683cf3e85797e4841c6 /Source/Core/VideoCommon/BPFunctions.cpp | |
| parent | ab8a02566daaea1046fa272e2b7038790f3ba122 (diff) | |
VideoBackends / VideoCommon: rename member variables in RenderState to be consistent
Diffstat (limited to 'Source/Core/VideoCommon/BPFunctions.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/BPFunctions.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/VideoCommon/BPFunctions.cpp b/Source/Core/VideoCommon/BPFunctions.cpp index 444b1dbc4f..7d1bd05482 100644 --- a/Source/Core/VideoCommon/BPFunctions.cpp +++ b/Source/Core/VideoCommon/BPFunctions.cpp @@ -293,9 +293,9 @@ void SetBlendMode() */ void ClearScreen(const MathUtil::Rectangle<int>& rc) { - bool colorEnable = (bpmem.blendmode.colorupdate != 0); - bool alphaEnable = (bpmem.blendmode.alphaupdate != 0); - bool zEnable = (bpmem.zmode.updateenable != 0); + bool colorEnable = (bpmem.blendmode.color_update != 0); + bool alphaEnable = (bpmem.blendmode.alpha_update != 0); + bool zEnable = (bpmem.zmode.update_enable != 0); auto pixel_format = bpmem.zcontrol.pixel_format; // (1): Disable unused color channels |
