aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--code/renderer/tr_surface.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/code/renderer/tr_surface.c b/code/renderer/tr_surface.c
index cb535fd..c95e6b2 100644
--- a/code/renderer/tr_surface.c
+++ b/code/renderer/tr_surface.c
@@ -615,10 +615,10 @@ static void LerpMeshVertexes_altivec(md3Surface_t *surf, float backlerp)
{
short *oldXyz, *newXyz, *oldNormals, *newNormals;
float *outXyz, *outNormal;
- float oldXyzScale ALIGN16;
- float newXyzScale ALIGN16;
- float oldNormalScale ALIGN16;
- float newNormalScale ALIGN16;
+ float oldXyzScale ALIGN(16);
+ float newXyzScale ALIGN(16);
+ float oldNormalScale ALIGN(16);
+ float newNormalScale ALIGN(16);
int vertNum;
unsigned lat, lng;
int numVerts;