Fix a small ommission.

This commit is contained in:
Christian Speckner 2017-03-20 00:40:42 +01:00
parent 7325cd8034
commit 25261fff78
1 changed files with 1 additions and 1 deletions

View File

@ -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;