Merge pull request #22 from GabrielRavier/improveBullet

Improve Bullet
This commit is contained in:
Clownacy 2019-05-07 18:04:07 +00:00 committed by GitHub
commit 7918e6067d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 18 deletions

View file

@ -344,7 +344,8 @@ void HitBulletMap()
if (gBul[i].bbits & 4) if (gBul[i].bbits & 4)
{ {
// For some reason a 'continue' just doesn't produce the same assembly // Using "continue" here doesn't produce accurate assembly
// TODO Figure out what Pixel actually did (it's unlikely he left the brackets empty)
} }
else else
{ {
@ -401,3 +402,4 @@ void HitBulletMap()
} }
} }
} }