summaryrefslogtreecommitdiff
path: root/riscos/image.c
diff options
context:
space:
mode:
authorJohn Tytgat <joty@netsurf-browser.org>2008-09-28 22:37:13 +0000
committerJohn Tytgat <joty@netsurf-browser.org>2008-09-28 22:37:13 +0000
commit2d1481fafc6fd98c5ca8fc46562b725441a0f594 (patch)
treee28954b7171a739df009d87e8a33c35e2d1c7dc6 /riscos/image.c
parentf0926760125501228b2b506c92e8e2bf6fdd83e6 (diff)
downloadnetsurf-2d1481fafc6fd98c5ca8fc46562b725441a0f594.tar.gz
netsurf-2d1481fafc6fd98c5ca8fc46562b725441a0f594.tar.bz2
'unsigned long' -> 'colour' where it made sense.
svn path=/trunk/netsurf/; revision=5459
Diffstat (limited to 'riscos/image.c')
-rw-r--r--riscos/image.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/riscos/image.c b/riscos/image.c
index 7826ad7e4..9b3eaa5db 100644
--- a/riscos/image.c
+++ b/riscos/image.c
@@ -30,7 +30,7 @@
static bool image_redraw_tinct(osspriteop_id header, int x, int y,
int req_width, int req_height, int width, int height,
- unsigned long background_colour, bool repeatx, bool repeaty,
+ colour background_colour, bool repeatx, bool repeaty,
bool alpha, unsigned int tinct_options);
static bool image_redraw_os(osspriteop_id header, int x, int y,
int req_width, int req_height, int width, int height);
@@ -54,7 +54,7 @@ static bool image_redraw_os(osspriteop_id header, int x, int y,
*/
bool image_redraw(osspriteop_area *area, int x, int y, int req_width,
int req_height, int width, int height,
- unsigned long background_colour,
+ colour background_colour,
bool repeatx, bool repeaty, bool background, image_type type)
{
unsigned int tinct_options;
@@ -115,7 +115,7 @@ bool image_redraw(osspriteop_area *area, int x, int y, int req_width,
*/
bool image_redraw_tinct(osspriteop_id header, int x, int y,
int req_width, int req_height, int width, int height,
- unsigned long background_colour, bool repeatx, bool repeaty,
+ colour background_colour, bool repeatx, bool repeaty,
bool alpha, unsigned int tinct_options)
{
_kernel_oserror *error;