shithub: choc

Download patch

ref: 995b6bf6acdebf8cb46f680a24d93430fc23a85f
parent: ab0dc8fcb49a71db33e26f9c01e88d24e43c556e
author: James Haley <haleyjd@hotmail.com>
date: Fri Sep 3 00:36:34 EDT 2010

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

Subversion-branch: /branches/strife-branch
Subversion-revision: 2005

--- a/src/strife/r_main.c
+++ b/src/strife/r_main.c
@@ -837,23 +837,20 @@
 
 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)));
         }
     }
 }