From 77a7bab5ae86871d756522affa3e4e899999da4c Mon Sep 17 00:00:00 2001 From: Tony Wasserka Date: Mon, 10 Mar 2014 16:15:40 +0100 Subject: BPMemory: Use the new BitField class in two selected structures. --- Source/Core/VideoCommon/BPStructs.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Core/VideoCommon/BPStructs.cpp') 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; -- cgit v1.2.3