aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-12-06 18:17:10 +0000
committertma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-12-06 18:17:10 +0000
commitdd4b80f1158f8adae8a7f59aca8c2986d5bc7a3d (patch)
tree9b04b580495ae1f0ea9ede34d923c8b31044c007
parente6d67c186ebb5ed96377c725e711618ffab0db82 (diff)
downloadioquake3-aero-dd4b80f1158f8adae8a7f59aca8c2986d5bc7a3d.tar.gz
ioquake3-aero-dd4b80f1158f8adae8a7f59aca8c2986d5bc7a3d.zip
* Oopsie.
git-svn-id: svn://svn.icculus.org/quake3/trunk@431 edf5b092-35ff-0310-97b2-ce42778d08ea
-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;