summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/BPStructs.cpp
diff options
context:
space:
mode:
authorTony Wasserka <NeoBrainX@gmail.com>2014-03-10 16:15:40 +0100
committerTony Wasserka <NeoBrainX@gmail.com>2014-03-25 23:57:57 +0100
commit77a7bab5ae86871d756522affa3e4e899999da4c (patch)
tree84663a865d2f7ab05622c99a15c1904ea991b028 /Source/Core/VideoCommon/BPStructs.cpp
parent948c0a54f14085b1edb76afe39ee985424ea4474 (diff)
BPMemory: Use the new BitField class in two selected structures.
Diffstat (limited to 'Source/Core/VideoCommon/BPStructs.cpp')
-rw-r--r--Source/Core/VideoCommon/BPStructs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/BPStructs.cpp b/Source/Core/VideoCommon/BPStructs.cpp
index ff60ff6392..e5301b555f 100644
--- a/Source/Core/VideoCommon/BPStructs.cpp
+++ b/Source/Core/VideoCommon/BPStructs.cpp
@@ -560,9 +560,9 @@ void BPWritten(const BPCmd& bp)
// don't compare with changes!
int num = (bp.address >> 1) & 0x3;
if ((bp.address & 1) == 0)
- PixelShaderManager::SetColorChanged(bpmem.tevregs[num].low.type, num);
+ PixelShaderManager::SetColorChanged(bpmem.tevregs[num].type_ra, num);
else
- PixelShaderManager::SetColorChanged(bpmem.tevregs[num].high.type, num);
+ PixelShaderManager::SetColorChanged(bpmem.tevregs[num].type_bg, num);
}
break;