aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordi Vilalta Prat2009-01-13 15:40:46 +0000
committerJordi Vilalta Prat2009-01-13 15:40:46 +0000
commit6801112956e58b73b5ff77a8869af864a30546d8 (patch)
treea354d6cedf9a978fd78fe9308e111d49ac6e6302
parentc2db2b91a53386960f3351d5ab3681bd913386e0 (diff)
downloadscummvm-rg350-6801112956e58b73b5ff77a8869af864a30546d8.tar.gz
scummvm-rg350-6801112956e58b73b5ff77a8869af864a30546d8.tar.bz2
scummvm-rg350-6801112956e58b73b5ff77a8869af864a30546d8.zip
Fix dithering of scaled videos
svn-id: r35844
-rw-r--r--engines/groovie/roq.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/groovie/roq.cpp b/engines/groovie/roq.cpp
index 60f64f15a8..0c20cdefaf 100644
--- a/engines/groovie/roq.cpp
+++ b/engines/groovie/roq.cpp
@@ -313,7 +313,7 @@ bool ROQPlayer::processBlockInfo(ROQBlockHeader &blockHeader) {
#ifdef DITHER
// Reset the dithering algorithm with the new width
delete _dither;
- _dither = new Graphics::SierraLight(width, _paletteLookup);
+ _dither = new Graphics::SierraLight(width * _scale, _paletteLookup);
#endif
}