fix weird overscan issues when multiwidth + no-interlacing happens at the same time
This commit is contained in:
parent
384bc64a86
commit
edf8c041ec
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -183,7 +183,7 @@ ECL_EXPORT void FrameAdvance(MyFrameInfo& frame)
|
|||
|
||||
for (int line = lineStart; line < lineEnd; line++)
|
||||
{
|
||||
auto lw = multiWidth ? EES->LineWidths[line] : w;
|
||||
auto lw = EES->InterlaceOn ? EES->LineWidths[line] : w;
|
||||
if (MDFN_LIKELY(lw > 0))
|
||||
{
|
||||
memcpy(dst, src, lw * sizeof(uint32_t));
|
||||
|
|
Loading…
Reference in New Issue