From a4fd712a8f13009864da2e549fa7fca5a54c152a Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Wed, 21 Sep 2016 06:18:14 +0200 Subject: FULLPIPE: Fix inventory transparency --- engines/fullpipe/gfx.cpp | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/engines/fullpipe/gfx.cpp b/engines/fullpipe/gfx.cpp index 5681e3c615..0007389ec9 100644 --- a/engines/fullpipe/gfx.cpp +++ b/engines/fullpipe/gfx.cpp @@ -1180,15 +1180,7 @@ void BigPicture::draw(int x, int y, int style, int angle) { if (y != -1) ny = y; - if (_alpha < 0xFF) { - //vrtSetAlphaBlendMode(g_vrtDrawHandle, 1, v9); - } - - _bitmap->putDib(nx, ny, 0, 0xff); - - if (_alpha < 0xFF) { - //vrtSetAlphaBlendMode(g_vrtDrawHandle, 0, 255); - } + _bitmap->putDib(nx, ny, 0, _alpha); } } -- cgit v1.2.3