diff options
author | Eugene Sandulenko | 2013-12-10 17:59:35 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2013-12-10 17:59:35 +0200 |
commit | 789b4b694f2fcfd54772feb4032653be03ca75f2 (patch) | |
tree | b77c6878a07744e989fcbc750b105344c34657bd /engines/fullpipe | |
parent | 28a09a43dce56f5cd1fba3bdef1dfa142459e6ab (diff) | |
download | scummvm-rg350-789b4b694f2fcfd54772feb4032653be03ca75f2.tar.gz scummvm-rg350-789b4b694f2fcfd54772feb4032653be03ca75f2.tar.bz2 scummvm-rg350-789b4b694f2fcfd54772feb4032653be03ca75f2.zip |
FULLPIPE: Fix drawing artifacts in all scenes
Diffstat (limited to 'engines/fullpipe')
-rw-r--r-- | engines/fullpipe/scene.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/fullpipe/scene.cpp b/engines/fullpipe/scene.cpp index 61ff3457a7..099d85e670 100644 --- a/engines/fullpipe/scene.cpp +++ b/engines/fullpipe/scene.cpp @@ -450,6 +450,9 @@ void Scene::draw() { debug(6, ">>>>> Scene::draw()"); updateScrolling(); + // Clean previous stuff + g_fullpipe->_backgroundSurface.fillRect(Common::Rect(0, 0, 799, 599), 0); + drawContent(60000, 0, true); objectList_sortByPriority(_staticANIObjectList2); |