aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/coktelvideo.cpp
diff options
context:
space:
mode:
authorSven Hesse2008-12-24 16:59:37 +0000
committerSven Hesse2008-12-24 16:59:37 +0000
commit00baeacf609e013bf671840aeea3cdf7741733b6 (patch)
treeacf1686ac80f859986873db1310b3aed58afba23 /engines/gob/coktelvideo.cpp
parenteee07138c99a6551fcc83789c73605f16e1cfd61 (diff)
downloadscummvm-rg350-00baeacf609e013bf671840aeea3cdf7741733b6.tar.gz
scummvm-rg350-00baeacf609e013bf671840aeea3cdf7741733b6.tar.bz2
scummvm-rg350-00baeacf609e013bf671840aeea3cdf7741733b6.zip
Documenting the dither code a bit more and removing SierraLight's not needed height argument
svn-id: r35530
Diffstat (limited to 'engines/gob/coktelvideo.cpp')
-rw-r--r--engines/gob/coktelvideo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/coktelvideo.cpp b/engines/gob/coktelvideo.cpp
index cab1072d94..2e8cd74aad 100644
--- a/engines/gob/coktelvideo.cpp
+++ b/engines/gob/coktelvideo.cpp
@@ -1542,7 +1542,7 @@ void Vmd::blit16(byte *dest, uint16 *src, int16 width, int16 height) {
assert(_palLUT);
Graphics::SierraLight *dither =
- new Graphics::SierraLight(width, height, _palLUT);
+ new Graphics::SierraLight(width, _palLUT);
for (int i = 0; i < height; i++) {
byte *d = dest;