summaryrefslogtreecommitdiff
path: root/atari/bitmap.c
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2013-04-16 01:17:44 +0200
committerOle Loots <ole@monochrom.net>2013-04-16 01:17:44 +0200
commit3edaf9ed2ea8bca302cccc218e12bf0b925d2ff3 (patch)
treef6a7c5a5199238e6c7e1853d697ae5459367cd35 /atari/bitmap.c
parentf9e950ba8fda2614464dc8111b38a11b48fe4816 (diff)
downloadnetsurf-3edaf9ed2ea8bca302cccc218e12bf0b925d2ff3.tar.gz
netsurf-3edaf9ed2ea8bca302cccc218e12bf0b925d2ff3.tar.bz2
Default to opaque bitmaps (fixes several redraw issues)
Diffstat (limited to 'atari/bitmap.c')
-rwxr-xr-xatari/bitmap.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/atari/bitmap.c b/atari/bitmap.c
index 10b5c8cfa..774f0e9c8 100755
--- a/atari/bitmap.c
+++ b/atari/bitmap.c
@@ -117,6 +117,7 @@ void * bitmap_create_ex( int w, int h, short bpp, int rowstride, unsigned int st
bitmap->bpp = bpp;
bitmap->resized = NULL;
bitmap->rowstride = rowstride;
+ bitmap->opaque = true;
} else {
free(bitmap);
bitmap=NULL;