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

Correct isAdjustScreen

This commit is contained in:
Sergey Lipskiy 2016-10-16 20:30:37 +07:00
parent 0f5738e609
commit 327ab57353

View File

@ -987,7 +987,7 @@ bool _needAdjustCoordinate(OGLVideo & _ogl)
{
return _ogl.isAdjustScreen() &&
gSP.viewport.width < gDP.colorImage.width &&
gSP.viewport.width + gSP.viewport.x * 2.0f != (float)gDP.colorImage.width &&
u32(gSP.viewport.width + gSP.viewport.x * 2.0f) != gDP.colorImage.width &&
gDP.colorImage.width > VI.width * 98 / 100;
}