summaryrefslogtreecommitdiff
path: root/amiga/bitmap.c
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2012-08-07 21:34:52 +0100
committerChris Young <chris@unsatisfactorysoftware.co.uk>2012-08-07 21:34:52 +0100
commitb9446a3abb87d0b1999756e2132837b30c51cc97 (patch)
tree97a0e5ba4faa878fde0be18f9e86b23bb65b0300 /amiga/bitmap.c
parent3ba621759c4fb20dc35724414cb59c665686d418 (diff)
downloadnetsurf-b9446a3abb87d0b1999756e2132837b30c51cc97.tar.gz
netsurf-b9446a3abb87d0b1999756e2132837b30c51cc97.tar.bz2
rename old truecolour function
Diffstat (limited to 'amiga/bitmap.c')
-rw-r--r--amiga/bitmap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/amiga/bitmap.c b/amiga/bitmap.c
index 69dc2dc30..edc091669 100644
--- a/amiga/bitmap.c
+++ b/amiga/bitmap.c
@@ -351,7 +351,7 @@ struct bitmap *ami_bitmap_from_datatype(char *filename)
return bm;
}
-static struct BitMap *ami_getcachenativebm(struct bitmap *bitmap,int width,int height,struct BitMap *friendbm)
+static struct BitMap *ami_bitmap_get_truecolour(struct bitmap *bitmap,int width,int height,struct BitMap *friendbm)
{
struct RenderInfo ri;
struct BitMap *tbm = NULL;
@@ -518,6 +518,6 @@ struct BitMap *ami_bitmap_get_native(struct bitmap *bitmap,
if(ami_plot_screen_is_palettemapped() == true) {
return ami_bitmap_get_palettemapped(bitmap, width, height);
} else {
- return ami_getcachenativebm(bitmap, width, height, friendbm);
+ return ami_bitmap_get_truecolour(bitmap, width, height, friendbm);
}
}