diff options
author | Chris Young <chris@unsatisfactorysoftware.co.uk> | 2021-06-28 20:11:46 +0100 |
---|---|---|
committer | Chris Young <chris@unsatisfactorysoftware.co.uk> | 2021-06-28 20:11:46 +0100 |
commit | 5a6bb392184decd72779ea93c4e0ecc492b3d77f (patch) | |
tree | eb17c5fd876b98b7df4efd9a0831de9feeb74565 /frontends/amiga/bitmap.c | |
parent | 793f514220c15c6bb1b0db31bf0b6d0cfea0fc7b (diff) | |
download | netsurf-5a6bb392184decd72779ea93c4e0ecc492b3d77f.tar.gz netsurf-5a6bb392184decd72779ea93c4e0ecc492b3d77f.tar.bz2 |
Revert "Amiga: do not force 32-bit bitmaps"
This reverts commit 793f514220c15c6bb1b0db31bf0b6d0cfea0fc7b.
Diffstat (limited to 'frontends/amiga/bitmap.c')
-rw-r--r-- | frontends/amiga/bitmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/amiga/bitmap.c b/frontends/amiga/bitmap.c index 97e537c10..e160f9351 100644 --- a/frontends/amiga/bitmap.c +++ b/frontends/amiga/bitmap.c @@ -750,7 +750,7 @@ static nserror bitmap_render(struct bitmap *bitmap, struct hlcache_handle *conte plot_height = ((plot_width * bitmap->height) + (bitmap->width / 2)) / bitmap->width; - bm_globals = ami_plot_ra_alloc(bitmap->width, bitmap->height, false); + bm_globals = ami_plot_ra_alloc(bitmap->width, bitmap->height, true, false); ami_clearclipreg(bm_globals); struct redraw_context ctx = { |