From 3edaf9ed2ea8bca302cccc218e12bf0b925d2ff3 Mon Sep 17 00:00:00 2001 From: Ole Loots Date: Tue, 16 Apr 2013 01:17:44 +0200 Subject: [PATCH] Default to opaque bitmaps (fixes several redraw issues) --- atari/bitmap.c | 1 + 1 file changed, 1 insertion(+) 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;