aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Thomas2009-03-10 07:35:06 +0000
committerScott Thomas2009-03-10 07:35:06 +0000
commita4ad40235c55a1a1fc11affccf67379aa16367c5 (patch)
tree4e65906827c7db1762fde59434c3a7f6cc463521
parent7f1a9b385dd515fc48e797b2e167dc70e3f67ecb (diff)
downloadscummvm-rg350-a4ad40235c55a1a1fc11affccf67379aa16367c5.tar.gz
scummvm-rg350-a4ad40235c55a1a1fc11affccf67379aa16367c5.tar.bz2
scummvm-rg350-a4ad40235c55a1a1fc11affccf67379aa16367c5.zip
Fix graphics corruption in 11H FMV streams
svn-id: r39291
-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 b016fb8e7f..1181cc56d8 100644
--- a/engines/groovie/roq.cpp
+++ b/engines/groovie/roq.cpp
@@ -628,7 +628,7 @@ void ROQPlayer::paint8(byte i, int destx, int desty) {
void ROQPlayer::copy(byte size, int destx, int desty, int offx, int offy) {
offx *= _offScale / _scale;
- offy *= _offScale / _scale;
+ offy *= _scale;
// Get the beginning of the first line
byte *dst = (byte *)_currBuf->getBasePtr(destx, desty);