summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/BPStructs.cpp
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2014-05-03 15:13:14 -0400
committerJasper St. Pierre <jstpierre@mecheye.net>2014-05-20 11:15:10 -0400
commit4e8e51b278fe8b84212fcdc88f83478ce93ff7da (patch)
tree419270845a129565eaa10a94ccdb4d111351d3f4 /Source/Core/VideoCommon/BPStructs.cpp
parent833b7ee584c8ed828dea99f71c6874e73a8c3f32 (diff)
BPStructs: Remove calls to SetInterlacedMode when reloading state
SetInterlacedMode is a dummy no-op that does nothing.
Diffstat (limited to 'Source/Core/VideoCommon/BPStructs.cpp')
-rw-r--r--Source/Core/VideoCommon/BPStructs.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/Source/Core/VideoCommon/BPStructs.cpp b/Source/Core/VideoCommon/BPStructs.cpp
index d7d7210307..1c63d289a2 100644
--- a/Source/Core/VideoCommon/BPStructs.cpp
+++ b/Source/Core/VideoCommon/BPStructs.cpp
@@ -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);
- }
}