Explicitly force all-color for title screen

This commit is contained in:
Brendan Robert 2017-12-29 02:01:14 -06:00
parent 107a7b7ed9
commit 0567ed94cf

View File

@ -102,9 +102,11 @@ public class LawlessVideo extends VideoNTSC {
@Override
public void hblankStart(WritableImage screen, int y, boolean isDirty) {
int rowStart = getCurrentWriter().getYOffset(y);
if (rowStart >= 0x02000 && !titleScreen) {
if (rowStart >= 0x02000) {
boolean[] color = activeEngine.colorMask[y];
if (invActive) {
if (titleScreen) {
color = RenderEngine.UNKNOWN.colorMask[y];
} else if (invActive) {
color = RenderEngine.INVENTORY.colorMask[y];
} else if (activeEngine == RenderEngine.PORTRAIT) {
color = RenderEngine._2D.colorMask[y];