ref: 6b1f82e78eed80c66ffddcef7938ec2b3c801994
parent: bda9fc391a26457f32b0b648e6bbe1698722eeaa
author: Gabriel Ravier <gabravier@gmail.com>
date: Mon Nov 4 06:40:25 EST 2019
Documentation : Document identical function bodies for InitBullet and ClearBullet Signed-off-by: Gabriel Ravier <gabravier@gmail.com>
--- a/src/Bullet.cpp
+++ b/src/Bullet.cpp
@@ -66,6 +66,7 @@
void InitBullet()
{
+ // Identical to ClearBullet
for (int i = 0; i < BULLET_MAX; i++)
gBul[i].cond = 0;
}
@@ -110,6 +111,7 @@
void ClearBullet()
{
+ // Identical to InitBullet
for (int i = 0; i < BULLET_MAX; i++)
gBul[i].cond = 0;
}