diff options
| author | Scott Mansell <phiren@gmail.com> | 2013-09-23 16:31:27 +1200 |
|---|---|---|
| committer | Scott Mansell <phiren@gmail.com> | 2013-09-23 16:31:27 +1200 |
| commit | 4d3c41c8a2cbfe61ae4208f69e7debda3aa8bf5e (patch) | |
| tree | fe0dd8f73ac81e0b10ea9882c0c358f73da5284e /Source/Plugins/Plugin_VideoDX11/Src/Render.cpp | |
| parent | 4758ef9a9edf9ad503175d98ccc8e5614ec8f811 (diff) | |
Fixed issues with feild ordering.
This commit fixes issues with PAL games which use the incorrect feild
ordering.
We move all code that deals with indivudal fields from the indivudal
video plugins and VideoCommon and make VideoInterface always pass in
the start address of the whole XFB into VideoCommon.
Diffstat (limited to 'Source/Plugins/Plugin_VideoDX11/Src/Render.cpp')
| -rw-r--r-- | Source/Plugins/Plugin_VideoDX11/Src/Render.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Source/Plugins/Plugin_VideoDX11/Src/Render.cpp b/Source/Plugins/Plugin_VideoDX11/Src/Render.cpp index 4e412641b8..004ee91bde 100644 --- a/Source/Plugins/Plugin_VideoDX11/Src/Render.cpp +++ b/Source/Plugins/Plugin_VideoDX11/Src/Render.cpp @@ -787,7 +787,6 @@ void Renderer::Swap(u32 xfbAddr, FieldType field, u32 fbWidth, u32 fbHeight,cons return; } - if (field == FIELD_LOWER) xfbAddr -= fbWidth * 2; u32 xfbCount = 0; const XFBSourceBase* const* xfbSourceList = FramebufferManager::GetXFBSource(xfbAddr, fbWidth, fbHeight, xfbCount); if ((!xfbSourceList || xfbCount == 0) && g_ActiveConfig.bUseXFB && !g_ActiveConfig.bUseRealXFB) |
