summaryrefslogtreecommitdiff
path: root/amiga
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2008-08-07 19:05:44 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2008-08-07 19:05:44 +0000
commit82cc44fc4ece9d7e646b1072d7269c161bd44f73 (patch)
tree51689b728a43f00630ad62012ae3618e203e1b1e /amiga
parent394263bb2f81ce0d330058468496ecfa387ca60e (diff)
downloadnetsurf-82cc44fc4ece9d7e646b1072d7269c161bd44f73.tar.gz
netsurf-82cc44fc4ece9d7e646b1072d7269c161bd44f73.tar.bz2
Corrected bitmap plotter RGB format.
svn path=/trunk/netsurf/; revision=4949
Diffstat (limited to 'amiga')
-rwxr-xr-xamiga/plotters.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/amiga/plotters.c b/amiga/plotters.c
index 0abbfd0e6..1c853eeee 100755
--- a/amiga/plotters.c
+++ b/amiga/plotters.c
@@ -179,7 +179,7 @@ printf("bitmap plotter\n");
ri.Memory = bitmap->pixdata;
ri.BytesPerRow = bitmap->width * 4;
- ri.RGBFormat = RGBFB_A8R8G8B8;
+ ri.RGBFormat = RGBFB_R8G8B8A8;
p96WritePixelArray((struct RenderInfo *)&ri,0,0,currp,x,y,width,height);