From 909ff777ab0046388bd246dddee90ad03d6a110e Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 12 Feb 2007 10:57:45 +0000 Subject: [PATCH] Merged r2954:2955 from branches/SDL-1.2: Altivec alpha blitter alignment fix. Fixes Bugzilla #279. --- src/video/SDL_blit_A.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/SDL_blit_A.c b/src/video/SDL_blit_A.c index 969500e7a..d13970b93 100644 --- a/src/video/SDL_blit_A.c +++ b/src/video/SDL_blit_A.c @@ -1341,7 +1341,7 @@ Blit32to32SurfaceAlphaAltivec(SDL_BlitInfo * info) ONE_PIXEL_BLEND((UNALIGNED_PTR(dstp)) && (width), width); if (width > 0) { int extrawidth = (width % 4); - vector unsigned char valigner = vec_lvsl(0, srcp); + vector unsigned char valigner = VEC_ALIGNER(srcp); vector unsigned char vs = (vector unsigned char) vec_ld(0, srcp); width -= extrawidth; while (width) {