summaryrefslogtreecommitdiff
path: root/src/cgame
diff options
context:
space:
mode:
Diffstat (limited to 'src/cgame')
-rw-r--r--src/cgame/cg_draw.c4
-rw-r--r--src/cgame/cg_view.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/src/cgame/cg_draw.c b/src/cgame/cg_draw.c
index 5224c5b3..68f3d3b0 100644
--- a/src/cgame/cg_draw.c
+++ b/src/cgame/cg_draw.c
@@ -916,13 +916,13 @@ static void CG_DrawPlayerAmmoValue( rectDef_t *rect, vec4_t color )
case WP_ABUILD:
case WP_ABUILD2:
//percentage of BP remaining
- value = (int)( ( (float)cgs.alienBuildPoints / (float)cgs.alienBuildPointsTotal ) * 100.0f );
+ value = cgs.alienBuildPoints;
break;
case WP_HBUILD:
case WP_HBUILD2:
//percentage of BP remaining
- value = (int)( ( (float)cgs.humanBuildPoints / (float)cgs.humanBuildPointsTotal ) * 100.0f );
+ value = cgs.humanBuildPoints;
break;
default:
diff --git a/src/cgame/cg_view.c b/src/cgame/cg_view.c
index 29b55d71..e79c1d31 100644
--- a/src/cgame/cg_view.c
+++ b/src/cgame/cg_view.c
@@ -239,8 +239,8 @@ static void CG_OffsetThirdPersonView( void )
vec3_t view;
vec3_t focusAngles;
trace_t trace;
- static vec3_t mins = { -4, -4, -4 };
- static vec3_t maxs = { 4, 4, 4 };
+ static vec3_t mins = { -8, -8, -8 };
+ static vec3_t maxs = { 8, 8, 8 };
vec3_t focusPoint;
float focusDist;
float forwardScale, sideScale;
@@ -276,7 +276,7 @@ static void CG_OffsetThirdPersonView( void )
VectorCopy( cg.refdef.vieworg, view );
- VectorMA( view, 8, surfNormal, view );
+ VectorMA( view, 12, surfNormal, view );
//cg.refdefViewAngles[PITCH] *= 0.5;