From 87953020ba21043201787df49be9cd8f9cc526d9 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 16 Dec 2018 19:17:53 +0100 Subject: [PATCH] - fixed: FImageSource::GetCachedBitmap did not pass the translucency information along to the caller. --- src/textures/image.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/textures/image.cpp b/src/textures/image.cpp index 04d0833c0e..f047b8137b 100644 --- a/src/textures/image.cpp +++ b/src/textures/image.cpp @@ -269,6 +269,7 @@ FBitmap FImageSource::GetCachedBitmap(PalEntry *remap, int conversion, int *ptra } } } + if (ptrans) *ptrans = trans; return ret; }