From 8c48bf972d5b1ad8785b7bbf1a078156492f15fb Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Sat, 13 Jul 2019 16:42:13 +0200 Subject: HDB: Fix Gfx::updateFade() --- engines/hdb/gfx.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/engines/hdb/gfx.cpp b/engines/hdb/gfx.cpp index 94b8922293..855d6998e7 100644 --- a/engines/hdb/gfx.cpp +++ b/engines/hdb/gfx.cpp @@ -345,6 +345,8 @@ void Gfx::updateFade() { return; } + g_system->copyRectToScreen(_globalSurface.getBasePtr(0, 0), _globalSurface.pitch, 0, 0, _globalSurface.w, _globalSurface.h); + g_system->updateScreen(); g_system->delayMillis(1000 / kGameFPS); -- cgit v1.2.3