mirror of https://github.com/stella-emu/stella.git
Fix a small ommission.
This commit is contained in:
parent
7325cd8034
commit
25261fff78
|
@ -170,7 +170,7 @@ void Missile::render(uInt8 hclock)
|
|||
{
|
||||
bool render =
|
||||
myIsRendering &&
|
||||
(myRenderCounter >= 0 || (myIsMoving && myRenderCounter == -1 && ((hclock + 1) % 4 == 3))) &&
|
||||
(myRenderCounter >= 0 || (myIsMoving && myRenderCounter == -1 && myWidth < 4 && ((hclock + 1) % 4 == 3))) &&
|
||||
myIsEnabled;
|
||||
|
||||
collision = render ? myCollisionMaskEnabled : myCollisionMaskDisabled;
|
||||
|
|
Loading…
Reference in New Issue