Corrected bitmap plotter RGB format.

svn path=/trunk/netsurf/; revision=4949
This commit is contained in:
Chris Young 2008-08-07 19:05:44 +00:00
parent 394263bb2f
commit 82cc44fc4e
1 changed files with 1 additions and 1 deletions

View File

@ -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);