aboutsummaryrefslogtreecommitdiff
path: root/engines/lab
diff options
context:
space:
mode:
authorStrangerke2015-12-24 08:10:30 +0100
committerStrangerke2015-12-24 08:10:30 +0100
commit746f494c8501eba833462eda77f25f216c342c10 (patch)
tree0eb4adbe7de246e8a7620199878945887a3d7b94 /engines/lab
parent9e048bc207c189f32865bc01961b7d1fc9568847 (diff)
downloadscummvm-rg350-746f494c8501eba833462eda77f25f216c342c10.tar.gz
scummvm-rg350-746f494c8501eba833462eda77f25f216c342c10.tar.bz2
scummvm-rg350-746f494c8501eba833462eda77f25f216c342c10.zip
LAB: Fix bug in doTransWipe
Diffstat (limited to 'engines/lab')
-rw-r--r--engines/lab/dispman.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lab/dispman.cpp b/engines/lab/dispman.cpp
index 5722ba9557..6c261107e9 100644
--- a/engines/lab/dispman.cpp
+++ b/engines/lab/dispman.cpp
@@ -793,7 +793,7 @@ void DisplayMan::doTransWipe(CloseDataPtr *closePtrList, const Common::String fi
linesDone = 0;
}
- if (j == 9)
+ if (j == 0)
checkerboardEffect(0, 0, curY, _screenWidth - 1, curY + 1);
else
rectFill(0, curY, _screenWidth - 1, curY + 1);