fixes #595 (debugger BK color)

This commit is contained in:
thrust26 2020-03-25 12:00:41 +01:00
parent 8e78297e74
commit fceb496442
1 changed files with 2 additions and 1 deletions

View File

@ -568,7 +568,8 @@ bool TIA::poke(uInt16 address, uInt8 value)
break; break;
case COLUBK: case COLUBK:
myBackground.setColor(value & 0xFE); value &= 0xFE;
myBackground.setColor(value);
myShadowRegisters[address] = value; myShadowRegisters[address] = value;
break; break;