mirror of https://github.com/PCSX2/pcsx2.git
GS: Fix interlace offsets for no-interlace patches
This commit is contained in:
parent
311d1c805d
commit
e7f52cbf98
|
@ -175,7 +175,7 @@ bool GSRenderer::Merge(int field)
|
|||
const bool is_bob = GSConfig.InterlaceMode == GSInterlaceMode::BobTFF || GSConfig.InterlaceMode == GSInterlaceMode::BobBFF;
|
||||
|
||||
// Use offset for bob deinterlacing always, extra offset added later for FFMD mode.
|
||||
float offset = (tex[1] ? tex[1]->GetScale().y : tex[0]->GetScale().y);
|
||||
float offset = is_bob ? (tex[1] ? tex[1]->GetScale().y : tex[0]->GetScale().y) : 0.0f;
|
||||
|
||||
int field2 = 0;
|
||||
int mode = 2;
|
||||
|
|
Loading…
Reference in New Issue