diff options
Diffstat (limited to 'src/bullet.c')
| -rw-r--r-- | src/bullet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bullet.c b/src/bullet.c index b258f1e..2e4157f 100644 --- a/src/bullet.c +++ b/src/bullet.c @@ -46,11 +46,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); } } } |
