diff options
| author | Eugene Sandulenko | 2010-06-15 10:25:50 +0000 | 
|---|---|---|
| committer | Eugene Sandulenko | 2010-06-15 10:25:50 +0000 | 
| commit | fead2bb719c0a86b5aab8a3ea62d3c4d0eb5cd92 (patch) | |
| tree | 4823a7ed27edf7ef448b28b5b7b19c0f3d63f1fb | |
| parent | d1c34efad91e4b42dd88e0e45452f26d117d3c04 (diff) | |
| download | scummvm-rg350-fead2bb719c0a86b5aab8a3ea62d3c4d0eb5cd92.tar.gz scummvm-rg350-fead2bb719c0a86b5aab8a3ea62d3c4d0eb5cd92.tar.bz2 scummvm-rg350-fead2bb719c0a86b5aab8a3ea62d3c4d0eb5cd92.zip  | |
SAGA: Fix bug #2886130.
Bug #2886130: "ITE: Graphic Glitches during Cat Tribe Celebration".
We redraw statusbar for this scene. Bug in original.
svn-id: r49726
| -rw-r--r-- | engines/saga/render.cpp | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/saga/render.cpp b/engines/saga/render.cpp index ec168d296e..dc9334b037 100644 --- a/engines/saga/render.cpp +++ b/engines/saga/render.cpp @@ -110,6 +110,12 @@ void Render::drawScene() {  					_vm->_actor->drawActors();  			} +			// WORKAROUND +			// Bug #2886130: "ITE: Graphic Glitches during Cat Tribe Celebration" +			if (_vm->_scene->currentSceneNumber() == 274) { +				_vm->_interface->drawStatusBar(); +			} +  #ifdef SAGA_DEBUG  			if (getFlags() & RF_OBJECTMAP_TEST) {  				if (_vm->_scene->_objectMap)  | 
