Merge pull request #13 from Clownacy/master

Merge Clownacy/master into master
This commit is contained in:
Gabriel Ravier 2019-05-07 20:17:19 +02:00 committed by GitHub
commit 71015da19b
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()
} }
} }
} }