aboutsummaryrefslogtreecommitdiff
path: root/engines/lab/anim.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2015-12-18 03:11:29 +0200
committerWillem Jan Palenstijn2015-12-23 21:34:08 +0100
commitb1fc7852253e372c931d674cd7e2c4cb56bfd5b6 (patch)
treedc6a85f3e9910c8c3ff47a1cc23c816070a8abb7 /engines/lab/anim.cpp
parentf452834f7067c63357c5f45d9e15e53d6b178b4b (diff)
downloadscummvm-rg350-b1fc7852253e372c931d674cd7e2c4cb56bfd5b6.tar.gz
scummvm-rg350-b1fc7852253e372c931d674cd7e2c4cb56bfd5b6.tar.bz2
scummvm-rg350-b1fc7852253e372c931d674cd7e2c4cb56bfd5b6.zip
LAB: Use templates for the undiff functions
Diffstat (limited to 'engines/lab/anim.cpp')
-rw-r--r--engines/lab/anim.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lab/anim.cpp b/engines/lab/anim.cpp
index 648634bc8f..4b060965e2 100644
--- a/engines/lab/anim.cpp
+++ b/engines/lab/anim.cpp
@@ -160,7 +160,7 @@ void Anim::diffNextFrame(bool onlyDiffData) {
case 12:
curPos = _diffFile->pos();
_diffFile->skip(4);
- _vm->_utils->VRunLengthDecode(DrawBitMap->_planes[_curBit], _diffFile, DrawBitMap->_bytesPerRow);
+ _vm->_utils->verticalRunLengthDecode(DrawBitMap->_planes[_curBit], _diffFile, DrawBitMap->_bytesPerRow);
_curBit++;
_diffFile->seek(curPos + _size, SEEK_SET);
break;