diff options
author | Paul Gilbert | 2012-11-17 12:36:28 +1100 |
---|---|---|
committer | Paul Gilbert | 2012-11-17 12:36:28 +1100 |
commit | 60c46fe386ad5f927ceda75912af5bd8b5ed563c (patch) | |
tree | 902d278a1359317a6bd56ec05831bcfbc4fdf215 | |
parent | 63f69f2fa507baac3734019745aeda087d64be3e (diff) | |
download | scummvm-rg350-60c46fe386ad5f927ceda75912af5bd8b5ed563c.tar.gz scummvm-rg350-60c46fe386ad5f927ceda75912af5bd8b5ed563c.tar.bz2 scummvm-rg350-60c46fe386ad5f927ceda75912af5bd8b5ed563c.zip |
HOPKINS: Bugfix for restoring screen after PLAY_ANM2 animation plays.
-rw-r--r-- | engines/hopkins/anim.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hopkins/anim.cpp b/engines/hopkins/anim.cpp index 678e55e597..5209ca39ef 100644 --- a/engines/hopkins/anim.cpp +++ b/engines/hopkins/anim.cpp @@ -661,7 +661,7 @@ LABEL_114: } } else { _vm->_eventsManager.souris_max(); - _vm->_graphicsManager.SCANLINE(SCREEN_WIDTH * 2); + _vm->_graphicsManager.SCANLINE(SCREEN_WIDTH); _vm->_graphicsManager.max_x = SCREEN_WIDTH; _vm->_graphicsManager.DD_Lock(); _vm->_graphicsManager.Cls_Video(); |