diff options
author | Willem Jan Palenstijn | 2009-10-12 12:15:27 +0000 |
---|---|---|
committer | Willem Jan Palenstijn | 2009-10-12 12:15:27 +0000 |
commit | 0ab28463d6495bef1c792ec9cd605bd0ec7c65c6 (patch) | |
tree | 667cdee3f328617cf11eb6efbca94eba43b01ec2 /engines/sci | |
parent | 81a2316bd5f67ebcc8c7703b369586b6a20318e1 (diff) | |
download | scummvm-rg350-0ab28463d6495bef1c792ec9cd605bd0ec7c65c6.tar.gz scummvm-rg350-0ab28463d6495bef1c792ec9cd605bd0ec7c65c6.tar.bz2 scummvm-rg350-0ab28463d6495bef1c792ec9cd605bd0ec7c65c6.zip |
SCI: re-enable accidentally commented update call
svn-id: r44983
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/gui32/gui32.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/gui32/gui32.cpp b/engines/sci/gui32/gui32.cpp index 0909d981c2..3eb3fec67d 100644 --- a/engines/sci/gui32/gui32.cpp +++ b/engines/sci/gui32/gui32.cpp @@ -970,7 +970,7 @@ void SciGui32::graphRedrawBox(Common::Rect rect) { if (s->dyn_views && s->dyn_views->_parent == (GfxContainer *)s->port) s->dyn_views->draw(Common::Point(0, 0)); - //gfxop_update_box(s->gfx_state, area); + gfxop_update_box(s->gfx_state, area); } int16 SciGui32::picNotValid(int16 newPicNotValid) { |