]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Indentation fascist reporting for duty\!
authormand1nga <mand1nga@xonotic.org>
Mon, 11 Apr 2011 12:35:49 +0000 (09:35 -0300)
committermand1nga <mand1nga@xonotic.org>
Mon, 11 Apr 2011 12:35:49 +0000 (09:35 -0300)
qcsrc/client/hud.qc

index 37f10b884f5eb3184cf774c464eba82312fcaf2e..ce8b608fce346d2f29d8e5989271a465895e1993 100644 (file)
@@ -89,7 +89,7 @@ void draw_BorderPicture(vector theOrigin, string pic, vector theSize, vector the
 
 vector HUD_Get_Num_Color (float x, float maxvalue)
 {
-    float blinkingamt;
+       float blinkingamt;
        vector color;
        if(x >= maxvalue) {
                color_x = sin(2*M_PI*time);
@@ -122,13 +122,13 @@ vector HUD_Get_Num_Color (float x, float maxvalue)
                color_z = 0;
        }
 
-    blinkingamt = (1 - x/maxvalue/0.25);
-    if(blinkingamt > 0)
-    {
-        color_x = color_x - color_x * blinkingamt * sin(2*M_PI*time);
-        color_y = color_y - color_y * blinkingamt * sin(2*M_PI*time);
-        color_z = color_z - color_z * blinkingamt * sin(2*M_PI*time);
-    }
+       blinkingamt = (1 - x/maxvalue/0.25);
+       if(blinkingamt > 0)
+       {
+               color_x = color_x - color_x * blinkingamt * sin(2*M_PI*time);
+               color_y = color_y - color_y * blinkingamt * sin(2*M_PI*time);
+               color_z = color_z - color_z * blinkingamt * sin(2*M_PI*time);
+       }
        return color;
 }