BPStructs: Remove calls to SetInterlacedMode when reloading state

SetInterlacedMode is a dummy no-op that does nothing.
This commit is contained in:
Jasper St. Pierre 2014-05-03 15:13:14 -04:00
parent 833b7ee584
commit 4e8e51b278
1 changed files with 0 additions and 8 deletions

View File

@ -659,12 +659,4 @@ void BPReload()
SetBlendMode();
SetColorMask();
OnPixelFormatChange();
{
BPCmd bp = {BPMEM_FIELDMASK, 0xFFFFFF, static_cast<int>(((u32*)&bpmem)[BPMEM_FIELDMASK])};
SetInterlacingMode(bp);
}
{
BPCmd bp = {BPMEM_FIELDMODE, 0xFFFFFF, static_cast<int>(((u32*)&bpmem)[BPMEM_FIELDMODE])};
SetInterlacingMode(bp);
}
}