From 8bfb0b1e20a32a44523aad8444c9b36c5733a381 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 25 Oct 2020 09:22:17 +0100 Subject: [PATCH] - do not dim the objects of the Exhumed background screen. This was for dimming the console background but since the console already dims its background itself it made the background nearly opaque black. --- source/exhumed/src/gameloop.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/exhumed/src/gameloop.cpp b/source/exhumed/src/gameloop.cpp index 432632144..8b4c5461d 100644 --- a/source/exhumed/src/gameloop.cpp +++ b/source/exhumed/src/gameloop.cpp @@ -119,13 +119,13 @@ void GameInterface::DrawBackground() twod->ClearScreen(); - DrawRel(kSkullHead, 160, 100, 32); - DrawRel(kSkullJaw, 161, 130, 32); - DrawRel(nLogoTile, 160, 40, 32); + DrawRel(kSkullHead, 160, 100, 0); + DrawRel(kSkullJaw, 161, 130, 0); + DrawRel(nLogoTile, 160, 40, 0); // draw the fire urn/lamp thingies - DrawRel(kTile3512 + dword_9AB5F, 50, 150, 32); - DrawRel(kTile3512 + ((dword_9AB5F + 2) & 3), 270, 150, 32); + DrawRel(kTile3512 + dword_9AB5F, 50, 150, 0); + DrawRel(kTile3512 + ((dword_9AB5F + 2) & 3), 270, 150, 0); } //---------------------------------------------------------------------------