foxygit / doom Log in
commit 995b6bf6acdebf8cb46f680a24d93430fc23a85f
Author:     James Haley <haleyjd@hotmail.com>
AuthorDate: Fri Sep 3 04:36:34 2010 +0000
Commit:     James Haley <haleyjd@hotmail.com>
CommitDate: Fri Sep 3 04:36:34 2010 +0000

    Minor reformatting and elimination of a redundant branch condition
    (Watcom for the win!)

    Subversion-branch: /branches/strife-branch
    Subversion-revision: 2005
---
 src/strife/r_main.c | 17 +++++++----------
 1 file changed, 7 insertions(+), 10 deletions(-)

diff --git a/src/strife/r_main.c b/src/strife/r_main.c
index ddb583d3..bc902e4a 100644
--- a/src/strife/r_main.c
+++ b/src/strife/r_main.c
@@ -837,23 +837,20 @@ R_PointInSubsector

 void R_SetupPitch(player_t* player)
 {
-    fixed_t pitchfrac;
+    int pitchfrac;
     int i = 0;

     if(viewpitch != player->pitch)
     {
         viewpitch   = player->pitch;
-        pitchfrac   = ((setblocks*player->pitch)/10);
-        centery     = pitchfrac+viewheight/2;
-        centeryfrac = centery<<FRACBITS;
+        pitchfrac   = (setblocks * player->pitch) / 10;
+        centery     = pitchfrac + viewheight / 2;
+        centeryfrac = centery << FRACBITS;

-        if(viewheight > 0)
+        for(i = 0; i < viewheight; i++)
         {
-            for(i = 0; i < viewheight; i++)
-            {
-                yslope[i] = FixedDiv(viewwidth/2*FRACUNIT,
-                    abs(((i-centery)<<FRACBITS)+(FRACUNIT/2)));
-            }
+            yslope[i] = FixedDiv(viewwidth / 2 * FRACUNIT,
+                                 abs(((i - centery) << FRACBITS) + (FRACUNIT/2)));
         }
     }
 }