BPMemory: Use the new BitField class in two selected structures.

This commit is contained in:
Tony Wasserka
2014-03-10 16:15:40 +01:00
parent 948c0a54f1
commit 77a7bab5ae
5 changed files with 47 additions and 48 deletions

View File

@ -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;