mirror of https://github.com/stella-emu/stella.git
Add a missing line cache invalidation -> fixes bang! plasma field.
This commit is contained in:
parent
ec2ee2c570
commit
3a4827e0b8
|
@ -175,6 +175,7 @@ bool TIA::poke(uInt16 address, uInt8 value)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case VBLANK:
|
case VBLANK:
|
||||||
|
myLinesSinceChange = 0;
|
||||||
myFrameManager.setVblank(value & 0x02);
|
myFrameManager.setVblank(value & 0x02);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -192,6 +193,7 @@ bool TIA::poke(uInt16 address, uInt8 value)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case COLUBK:
|
case COLUBK:
|
||||||
|
myLinesSinceChange = 0;
|
||||||
myColorBk = value & 0xFE;
|
myColorBk = value & 0xFE;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue