]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Prevent a division by 0
authorterencehill <piuntn@gmail.com>
Wed, 30 May 2018 12:28:52 +0000 (14:28 +0200)
committerterencehill <piuntn@gmail.com>
Wed, 30 May 2018 12:28:52 +0000 (14:28 +0200)
qcsrc/common/mutators/mutator/waypoints/waypointsprites.qc

index 0faf7068cf396d2320c56353c49bf2025ce54882..326a26219b34e8008fe275f5b6d22076c958454a 100644 (file)
@@ -583,15 +583,16 @@ void Draw_WaypointSprite(entity this)
     {
         // scale it to be just in view
         vector d;
-        float f1, f2;
 
         d = o - '0.5 0 0' * vid_conwidth - '0 0.5 0' * vid_conheight;
         ang = atan2(-d.x, -d.y);
         if (o.z < 0)
             ang += M_PI;
 
-        f1 = d.x / vid_conwidth;
-        f2 = d.y / vid_conheight;
+               float f1 = d.x / vid_conwidth;
+               float f2 = d.y / vid_conheight; 
+               if (f1 == 0) { f1 = 0.000001; }
+               if (f2 == 0) { f2 = 0.000001; }
 
         if (max(f1, -f1) > max(f2, -f2)) {
             if (d.z * f1 > 0) {