mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-13 00:58:29 +02:00
BPMemory: Use the new BitField class in two selected structures.
This commit is contained in:
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user