diff options
author | Michel Dänzer <michel@tungstengraphics.com> | 2007-04-29 23:38:22 +0200 |
---|---|---|
committer | Michel Dänzer <michel@tungstengraphics.com> | 2007-04-29 23:38:22 +0200 |
commit | 5e4b3232dafe3b0dec65bf639bebaba4774210b7 (patch) | |
tree | 6a1692622a81112541393ad4b79e56e1d056dcb0 /fb | |
parent | 2866e0bac9b8dd3892c5e68abcfc6c97cebaf88a (diff) |
Fix fbCompositeTrans_0888xnx0888 build for wfb on big endian.
Diffstat (limited to 'fb')
-rw-r--r-- | fb/fbpict.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fb/fbpict.c b/fb/fbpict.c index 2c1039834..a7359673d 100644 --- a/fb/fbpict.c +++ b/fb/fbpict.c @@ -140,7 +140,7 @@ fbIn (CARD32 x, CARD8 y) temp=count&3; \ where-=temp; \ workingWhere=(CARD32 *)where; \ - workingVal=READ(workingWhere)++; \ + workingVal=READ(workingWhere++); \ count=4-temp; \ workingVal<<=(8*temp) #define readPacked(where,x,y,z) {if(!(x)) { (x)=4; y = READ(z++); } where=(y)>>24; (y)<<=8; (x)--;} |