diff options
author | Martin Kiewitz | 2010-08-23 13:57:00 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-08-23 13:57:00 +0000 |
commit | d6fc42ebc9835d5807b9c0f80abfebe8e23320a1 (patch) | |
tree | 332fc5c35f85bc747d37c0e3dd0b779e8612aa11 | |
parent | 23d4177d207c4797106a7a0ddb2a9dd5c8d5c539 (diff) | |
download | scummvm-rg350-d6fc42ebc9835d5807b9c0f80abfebe8e23320a1.tar.gz scummvm-rg350-d6fc42ebc9835d5807b9c0f80abfebe8e23320a1.tar.bz2 scummvm-rg350-d6fc42ebc9835d5807b9c0f80abfebe8e23320a1.zip |
SCI: slightly changing msecs for scrolling
svn-id: r52299
-rw-r--r-- | engines/sci/graphics/transitions.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/sci/graphics/transitions.cpp b/engines/sci/graphics/transitions.cpp index 6ecfc9841f..cc3f600a5f 100644 --- a/engines/sci/graphics/transitions.cpp +++ b/engines/sci/graphics/transitions.cpp @@ -469,7 +469,7 @@ void GfxTransitions::scroll(int16 number) { newScreenRect.right++; newMoveRect.left--; _screen->copyRectToScreen(newScreenRect, newMoveRect.left, newMoveRect.top); if ((stepNr & 1) == 0) { - msecCount += 4; + msecCount += 5; updateScreenAndWait(msecCount); } stepNr++; @@ -491,7 +491,7 @@ void GfxTransitions::scroll(int16 number) { newScreenRect.left--; _screen->copyRectToScreen(newScreenRect, newMoveRect.left, newMoveRect.top); if ((stepNr & 1) == 0) { - msecCount += 4; + msecCount += 5; updateScreenAndWait(msecCount); } stepNr++; @@ -513,7 +513,7 @@ void GfxTransitions::scroll(int16 number) { scrollCopyOldToScreen(oldScreenRect, _picRect.left, _picRect.top); newScreenRect.bottom++; newMoveRect.top--; _screen->copyRectToScreen(newScreenRect, newMoveRect.left, newMoveRect.top); - msecCount += 4; + msecCount += 5; updateScreenAndWait(msecCount); } break; @@ -526,7 +526,7 @@ void GfxTransitions::scroll(int16 number) { scrollCopyOldToScreen(oldScreenRect, oldMoveRect.left, oldMoveRect.top); newScreenRect.top--; _screen->copyRectToScreen(newScreenRect, _picRect.left, _picRect.top); - msecCount += 4; + msecCount += 5; updateScreenAndWait(msecCount); } break; |