summaryrefslogtreecommitdiffhomepage
path: root/src/bullet.c
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2024-05-12 17:48:41 -0400
committerrealtradam <[email protected]>2024-05-12 17:48:41 -0400
commit5fcd6b9dfe744768cdbb359277091ee03f610a6d (patch)
tree9478284864388ac52b93a6315a030b1af17b6d2d /src/bullet.c
parent13bd9e293e8ed12f39d7b97036abfad69b84ed19 (diff)
downloadtojam2024-5fcd6b9dfe744768cdbb359277091ee03f610a6d.tar.gz
tojam2024-5fcd6b9dfe744768cdbb359277091ee03f610a6d.zip
style changes
Diffstat (limited to 'src/bullet.c')
-rw-r--r--src/bullet.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bullet.c b/src/bullet.c
index 785ce2f..36b0e46 100644
--- a/src/bullet.c
+++ b/src/bullet.c
@@ -44,11 +44,11 @@ render_bullets(void)
}
else if(bullets[i].team == 1)
{
- DrawCube(bullets[i].position, 0.25, 0.25, 0.25, DARKBLUE);
+ DrawCube(bullets[i].position, 0.25, 0.25, 0.25, BLUE);
}
else if(bullets[i].team == 2)
{
- DrawCube(bullets[i].position, 0.25, 0.25, 0.25, DARKPURPLE);
+ DrawCube(bullets[i].position, 0.25, 0.25, 0.25, VIOLET);
}
}
}