mirror of https://github.com/stella-emu/stella.git
fixes #595 (debugger BK color)
This commit is contained in:
parent
8e78297e74
commit
fceb496442
|
@ -568,7 +568,8 @@ bool TIA::poke(uInt16 address, uInt8 value)
|
|||
break;
|
||||
|
||||
case COLUBK:
|
||||
myBackground.setColor(value & 0xFE);
|
||||
value &= 0xFE;
|
||||
myBackground.setColor(value);
|
||||
myShadowRegisters[address] = value;
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in New Issue