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;
|
||||
|
||||
case VBLANK:
|
||||
myLinesSinceChange = 0;
|
||||
myFrameManager.setVblank(value & 0x02);
|
||||
break;
|
||||
|
||||
|
@ -192,6 +193,7 @@ bool TIA::poke(uInt16 address, uInt8 value)
|
|||
break;
|
||||
|
||||
case COLUBK:
|
||||
myLinesSinceChange = 0;
|
||||
myColorBk = value & 0xFE;
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in New Issue