mirror of https://github.com/stella-emu/stella.git
Fix starfield regression.
This commit is contained in:
parent
2bb633800c
commit
b289232002
|
@ -96,7 +96,7 @@ class Ball : public Serializable
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void tick(bool isReceivingMclock = false)
|
void tick(bool isReceivingMclock = true)
|
||||||
{
|
{
|
||||||
if(myUseInvertedPhaseClock && myInvertedPhaseClock)
|
if(myUseInvertedPhaseClock && myInvertedPhaseClock)
|
||||||
{
|
{
|
||||||
|
|
|
@ -87,7 +87,7 @@ class Missile : public Serializable
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void tick(uInt8 hclock, bool isReceivingMclock = false)
|
void tick(uInt8 hclock, bool isReceivingMclock = true)
|
||||||
{
|
{
|
||||||
if(myUseInvertedPhaseClock && myInvertedPhaseClock)
|
if(myUseInvertedPhaseClock && myInvertedPhaseClock)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue