diff options
author | Eugene Sandulenko | 2019-07-13 16:42:13 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:17:19 +0200 |
commit | 8c48bf972d5b1ad8785b7bbf1a078156492f15fb (patch) | |
tree | 6ee72ed9f271057a046b0989938c6d4863c01a4c /engines | |
parent | 0a291d028cbc3f1ead687d69deb8e3569167c7ae (diff) | |
download | scummvm-rg350-8c48bf972d5b1ad8785b7bbf1a078156492f15fb.tar.gz scummvm-rg350-8c48bf972d5b1ad8785b7bbf1a078156492f15fb.tar.bz2 scummvm-rg350-8c48bf972d5b1ad8785b7bbf1a078156492f15fb.zip |
HDB: Fix Gfx::updateFade()
Diffstat (limited to 'engines')
-rw-r--r-- | engines/hdb/gfx.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
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); |