From 0cd4f43862d2a419b2a730e87c63f3eff54652fb Mon Sep 17 00:00:00 2001 From: Nipun Garg Date: Sat, 13 Jul 2019 04:21:12 +0530 Subject: HDB: Unstub updateVideo() --- engines/hdb/gfx.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/engines/hdb/gfx.cpp b/engines/hdb/gfx.cpp index 999cf3e7cb..00fa48ba9c 100644 --- a/engines/hdb/gfx.cpp +++ b/engines/hdb/gfx.cpp @@ -198,9 +198,16 @@ void Gfx::fillScreen(uint32 color) { } void Gfx::updateVideo() { + + uint32 timer = g_system->getMillis(); + updateFade(); g_hdb->checkProgress(); debug(9, "STUB: Gfx::updateVideo incomplete"); + + warning("STUB: Blit the Backbuffer to the primary surface"); + + while (g_system->getMillis() - timer < 16) {}; } void Gfx::drawPointer() { -- cgit v1.2.3