From cdb5b9dcaca4a0edb0c26cfc9993e23d4dfb8952 Mon Sep 17 00:00:00 2001 From: Richard Wilson Date: Fri, 12 Mar 2004 01:40:42 +0000 Subject: [project @ 2004-03-12 01:40:42 by rjw] Fixed bug where the dither and filter values were inverted. svn path=/import/netsurf/; revision=611 --- riscos/png.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'riscos/png.c') diff --git a/riscos/png.c b/riscos/png.c index 988e39704..fa57c2e9f 100644 --- a/riscos/png.c +++ b/riscos/png.c @@ -235,6 +235,6 @@ void nspng_redraw(struct content *c, long x, long y, ((char *) c->data.png.sprite_area + c->data.png.sprite_area->first), x, (int)(y - height), width, height, - (option_filter_sprites?0:(1<<1)) | (option_dither_sprites?0:(1<<2))); + (option_filter_sprites?(1<<1):0) | (option_dither_sprites?(1<<2):0)); } #endif -- cgit v1.2.3