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

correct cfb mode if screeen update on color buffer change is selected

In cfb mode the screen always needs to be updated
This commit is contained in:
purplemarshmallow 2016-01-03 23:57:12 +01:00
parent 1714dd50a2
commit ee8399c80d

View File

@ -127,7 +127,7 @@ void VI_UpdateScreen()
bNeedSwap = bCFB ? true : (*REG.VI_ORIGIN != VI.lastOrigin);
break;
case Config::bsOnColorImageChange:
bNeedSwap = gDP.colorImage.changed != 0;
bNeedSwap = bCFB ? true : (gDP.colorImage.changed != 0);
break;
}