diff options
author | Tim Angus <tim@ngus.net> | 2011-04-23 22:38:25 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:18:07 +0000 |
commit | 06006eb6930de74c577c87daf6a0f7917e22d578 (patch) | |
tree | 8caec25df040a3f3eddc99b593e51d993b9be1be /src/renderer/tr_surface.c | |
parent | 98438cc3e7d32312bb52b413c12698b67b8cfeb0 (diff) |
* Merge ioq3-r1946
Diffstat (limited to 'src/renderer/tr_surface.c')
-rw-r--r-- | src/renderer/tr_surface.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/renderer/tr_surface.c b/src/renderer/tr_surface.c index cc7f0f3a..f14501f7 100644 --- a/src/renderer/tr_surface.c +++ b/src/renderer/tr_surface.c @@ -616,10 +616,10 @@ static void LerpMeshVertexes_altivec(md3Surface_t *surf, float backlerp) { short *oldXyz, *newXyz, *oldNormals, *newNormals; float *outXyz, *outNormal; - float oldXyzScale ALIGN(16); - float newXyzScale ALIGN(16); - float oldNormalScale ALIGN(16); - float newNormalScale ALIGN(16); + float oldXyzScale QALIGN(16); + float newXyzScale QALIGN(16); + float oldNormalScale QALIGN(16); + float newNormalScale QALIGN(16); int vertNum; unsigned lat, lng; int numVerts; |