mirror of
https://git.code.sf.net/p/quake/game-source
synced 2024-11-22 20:11:49 +00:00
kill a warning
This commit is contained in:
parent
256edd3714
commit
490c8087e8
1 changed files with 1 additions and 2 deletions
|
@ -110,8 +110,7 @@ void(float shotcount, vector spread, void() deathmessage) _fire_bullets =
|
||||||
dist_left = 8192;
|
dist_left = 8192;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
/* FIXME: Remove '0' when compiler is fixed */
|
for (; shotcount > 0; shotcount--) {
|
||||||
for (0; shotcount > 0; shotcount--) {
|
|
||||||
direction = dir + crandom()*spread_x*v_right + crandom()*spread_y*v_up;
|
direction = dir + crandom()*spread_x*v_right + crandom()*spread_y*v_up;
|
||||||
traceline(src, src + direction*dist_left, FALSE, ignore);
|
traceline(src, src + direction*dist_left, FALSE, ignore);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue