summaryrefslogtreecommitdiff
path: root/framebuffer
diff options
context:
space:
mode:
Diffstat (limited to 'framebuffer')
-rw-r--r--framebuffer/fb_plotters.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/framebuffer/fb_plotters.h b/framebuffer/fb_plotters.h
index 4b3102f03..79bb6db6d 100644
--- a/framebuffer/fb_plotters.h
+++ b/framebuffer/fb_plotters.h
@@ -50,7 +50,7 @@ bool fb_plotters_bitmap_tile(int x, int y,
/* alpha blend two pixels together */
static inline colour fb_plotters_ablend(colour pixel, colour scrpixel)
{
-#if 0
+#if 1
int opacity = (pixel >> 24) & 0xFF;
int r,g,b;