]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
fix variable declarations for subscopes
authorRudolf Polzer <divverent@alientrap.org>
Sun, 31 Oct 2010 14:04:41 +0000 (15:04 +0100)
committerRudolf Polzer <divverent@alientrap.org>
Sun, 31 Oct 2010 14:04:41 +0000 (15:04 +0100)
qcsrc/client/View.qc
qcsrc/client/hud.qc
qcsrc/server/bot/scripting.qc
qcsrc/server/cl_physics.qc
qcsrc/server/cl_player.qc

index 733bab0c1469617277def55115e18855b3c5b7ef..1ef5bb5a15c73f398770272973bcace0860386e1 100644 (file)
@@ -358,6 +358,7 @@ void CSQC_UpdateView(float w, float h)
        float f, i, j;
        vector v, vo;
        vector vf_size, vf_min;
+       float a;
 
        vf_size = R_SetView3fv(VF_SIZE);
        vf_min = R_SetView3fv(VF_MIN);
@@ -569,7 +570,6 @@ void CSQC_UpdateView(float w, float h)
        {
                // apply night vision effect
                vector rgb, tc_00, tc_01, tc_10, tc_11;
-               float a;
 
                if(!nightvision_noise)
                {
index 62abfce1538744f73a410d2fd901d1192b4d8763..379b81075133ad76755665608b73b7341d15abab 100644 (file)
@@ -4948,6 +4948,8 @@ switch (id) {\
 
 void HUD_Main (void)
 {
+       float i;
+
        hud_skin_path = strcat("gfx/hud/", autocvar_hud_skin);
 
        // global hud alpha fade
@@ -4974,7 +4976,6 @@ void HUD_Main (void)
        // HUD configure visible grid
        if(autocvar__hud_configure && autocvar_hud_configure_grid && autocvar_hud_configure_grid_alpha)
        {
-               float i;
                // x-axis
                for(i = 0; i < 1/bound(0.005, autocvar_hud_configure_grid_xsize, 0.2); ++i)
                {
index 4d150fcca9da9e9d0338c83eb6394d8f500e152c..196e3d7b6963d5ba34ac2e56b0ca679645360264 100644 (file)
@@ -101,7 +101,7 @@ entity bot_getplace(string placename)
        {
                e = find(world, targetname, placename);
                if(!e)
-                       print("invalid place ", s, "\n");
+                       print("invalid place ", placename, "\n");
                return e;
        }
 }
index b587c166e5f52380e026147e9234e343128a146f..440c69bf33c13b4ab75f42a4320d543c9c7580f2 100644 (file)
@@ -266,7 +266,7 @@ void RaceCarPhysics()
        // using this move type for "big rigs"
        // the engine does not push the entity!
 
-       float accel, steer, f;
+       float accel, steer, f, myspeed, steerfactor;
        vector angles_save, rigvel;
 
        angles_save = self.angles;
@@ -292,7 +292,7 @@ void RaceCarPhysics()
 
        if(self.flags & FL_ONGROUND || g_bugrigs_air_steering)
        {
-               float myspeed, upspeed, steerfactor, accelfactor;
+               float upspeed, accelfactor;
 
                myspeed = self.velocity * v_forward;
                upspeed = self.velocity * v_up;
index b00c4b4fd73e8fc47770854e966aa871f5c8515f..d890f5d591ad49bc4ef21d0a9a2456704f5a5752 100644 (file)
@@ -858,6 +858,7 @@ float Say(entity source, float teamsay, entity privatesay, string msgin, float f
 {
        string msgstr, colorstr, cmsgstr, namestr, fullmsgstr, sourcemsgstr, fullcmsgstr, sourcecmsgstr, privatemsgprefix;
        float flood, privatemsgprefixlen;
+       var .float flood_field;
        entity head;
        float ret;
 
@@ -939,7 +940,6 @@ float Say(entity source, float teamsay, entity privatesay, string msgin, float f
                float flood_spl;
                float flood_burst;
                float flood_lmax;
-               var .float flood_field;
                float lines;
                if(privatesay)
                {
@@ -1001,10 +1001,10 @@ float Say(entity source, float teamsay, entity privatesay, string msgin, float f
                        else
                                flood = 1;
                }
-       }
 
-       if (timeoutStatus == 2) //when game is paused, no flood protection
-               source.flood_field = flood = 0;
+               if (timeoutStatus == 2) //when game is paused, no flood protection
+                       source.flood_field = flood = 0;
+       }
 
        if(flood == 2) // cannot happen for empty msgstr
        {