From 4d66f2025f6175fb34590d3ae0fdbe9735bd4789 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Thu, 2 Dec 2021 20:25:22 +0200 Subject: [PATCH] Non-HDR blacker than black fix. --- gfxutil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfxutil.cpp b/gfxutil.cpp index 172f5f09..6bd3b614 100644 --- a/gfxutil.cpp +++ b/gfxutil.cpp @@ -416,7 +416,7 @@ void alloc_colors64k(int monid, int rw, int gw, int bw, int rs, int gs, int bs, xcolors[i] |= xcolors[i] * 0x00010001; } } - fullblack = xcolors[0]; + fullblack = 0; if (gfx_hdr) { fullblack = doAlpha(1, aw, as); } -- 2.47.3