From 4c4b479df75864d1af0b7d630e5eb97c16a03faa Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Wed, 24 Jun 2015 10:21:58 +0200 Subject: [PATCH] fixed panel content of closing door 1 when leaving game to main menu --- src/screens.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/screens.c b/src/screens.c index 26461754..1f01c599 100644 --- a/src/screens.c +++ b/src/screens.c @@ -1485,6 +1485,7 @@ void DrawMainMenu() MapScreenMenuGadgets(SCREEN_MASK_MAIN); /* copy actual game door content to door double buffer for OpenDoor() */ + BlitBitmap(drawto, bitmap_db_door_1, DX, DY, DXSIZE, DYSIZE, 0, 0); BlitBitmap(drawto, bitmap_db_door_2, VX, VY, VXSIZE, VYSIZE, 0, 0); OpenDoor(GetDoorState() | DOOR_NO_DELAY | DOOR_FORCE_REDRAW); -- 2.34.1