1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-04 10:03:36 +00:00

Fix image jitter in interlaced mode.

Fixed regression caused by commit f2b9883
This commit is contained in:
Sergey Lipskiy 2016-11-30 20:47:32 +07:00
parent d5eb2cdd85
commit 807622f7bf

View File

@ -876,8 +876,10 @@ void FrameBufferList::renderBuffer(u32 _address)
Xoffset = 0;
if (isLowerField) {
// if (srcY0 > 0)
// --srcY0;
if (*REG.VI_WIDTH < VI.width * 2) {
if (srcY0 > 0)
--srcY0;
}
if (dstY0 > 0)
--dstY0;
}