aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNipun Garg2019-07-13 04:21:12 +0530
committerEugene Sandulenko2019-09-03 17:17:18 +0200
commit0cd4f43862d2a419b2a730e87c63f3eff54652fb (patch)
treed1a18927d85533d09f32e2854b3dedfed27505ef
parentc0777f5a032a92d0c0c03f57504b02a40ef2a5e6 (diff)
downloadscummvm-rg350-0cd4f43862d2a419b2a730e87c63f3eff54652fb.tar.gz
scummvm-rg350-0cd4f43862d2a419b2a730e87c63f3eff54652fb.tar.bz2
scummvm-rg350-0cd4f43862d2a419b2a730e87c63f3eff54652fb.zip
HDB: Unstub updateVideo()
-rw-r--r--engines/hdb/gfx.cpp7
1 files changed, 7 insertions, 0 deletions
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() {