diff options
| author | Filippos Karapetis | 2015-12-04 22:53:31 +0200 |
|---|---|---|
| committer | Willem Jan Palenstijn | 2015-12-23 21:33:51 +0100 |
| commit | ea6d4579e284e10778c1703ff6a1638505697cea (patch) | |
| tree | 9a0499b385312fa8bffe59546a940ce23ff10f91 /engines/lab/lab.cpp | |
| parent | 6f3644f377cb298cb82d7a9235b9aec4cfa875ea (diff) | |
| download | scummvm-rg350-ea6d4579e284e10778c1703ff6a1638505697cea.tar.gz scummvm-rg350-ea6d4579e284e10778c1703ff6a1638505697cea.tar.bz2 scummvm-rg350-ea6d4579e284e10778c1703ff6a1638505697cea.zip | |
LAB: Merge all of the different image drawing functions
Diffstat (limited to 'engines/lab/lab.cpp')
| -rw-r--r-- | engines/lab/lab.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lab/lab.cpp b/engines/lab/lab.cpp index 4a14ba63d0..2cd237c99d 100644 --- a/engines/lab/lab.cpp +++ b/engines/lab/lab.cpp @@ -482,7 +482,7 @@ void LabEngine::changeCombination(uint16 number) { scrollDisplayY(2, _graphics->VGAScaleX(COMBINATION_X[number]), _graphics->VGAScaleY(65), _graphics->VGAScaleX(COMBINATION_X[number]) + (Images[combnum])->_width - 1, _graphics->VGAScaleY(65) + (Images[combnum])->_height); - Images[combnum]->bltBitMap(0, (Images[combnum])->_height - (2 * i), &(display), _graphics->VGAScaleX(COMBINATION_X[number]), _graphics->VGAScaleY(65), (Images[combnum])->_width, 2); + Images[combnum]->blitBitmap(0, (Images[combnum])->_height - (2 * i), &(display), _graphics->VGAScaleX(COMBINATION_X[number]), _graphics->VGAScaleY(65), (Images[combnum])->_width, 2, false); } for (uint16 i = 0; i < 6; i++) |
