aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics
diff options
context:
space:
mode:
authorMartin Kiewitz2010-08-23 13:57:00 +0000
committerMartin Kiewitz2010-08-23 13:57:00 +0000
commitd6fc42ebc9835d5807b9c0f80abfebe8e23320a1 (patch)
tree332fc5c35f85bc747d37c0e3dd0b779e8612aa11 /engines/sci/graphics
parent23d4177d207c4797106a7a0ddb2a9dd5c8d5c539 (diff)
downloadscummvm-rg350-d6fc42ebc9835d5807b9c0f80abfebe8e23320a1.tar.gz
scummvm-rg350-d6fc42ebc9835d5807b9c0f80abfebe8e23320a1.tar.bz2
scummvm-rg350-d6fc42ebc9835d5807b9c0f80abfebe8e23320a1.zip
SCI: slightly changing msecs for scrolling
svn-id: r52299
Diffstat (limited to 'engines/sci/graphics')
-rw-r--r--engines/sci/graphics/transitions.cpp8
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;