mirror of
https://github.com/badvision/lawless-legends.git
synced 2025-03-01 03:30:04 +00:00
Explicitly force all-color for title screen
This commit is contained in:
parent
107a7b7ed9
commit
0567ed94cf
@ -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];
|
||||
|
Loading…
x
Reference in New Issue
Block a user