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

Fix code duplication in FrameBuffer.cpp

This commit is contained in:
Sergey Lipskiy 2014-10-13 19:33:19 +07:00
parent 72ce00157b
commit 94c381f734

View File

@ -361,7 +361,7 @@ void FrameBufferList::renderBuffer(u32 _address)
const float dstScaleY = (float)ogl.getHeight() / float(vFullHeight);
bool isLowerField = false;
if ((*REG.VI_STATUS & 0x40) != 0)
if (interlaced)
isLowerField = vStart > vStartPrev;
vStartPrev = vStart;