diff options
| author | Filippos Karapetis | 2015-12-18 03:11:29 +0200 |
|---|---|---|
| committer | Willem Jan Palenstijn | 2015-12-23 21:34:08 +0100 |
| commit | b1fc7852253e372c931d674cd7e2c4cb56bfd5b6 (patch) | |
| tree | dc6a85f3e9910c8c3ff47a1cc23c816070a8abb7 /engines/lab/anim.cpp | |
| parent | f452834f7067c63357c5f45d9e15e53d6b178b4b (diff) | |
| download | scummvm-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.cpp | 2 |
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; |
