diff options
| author | Max Horn | 2004-09-24 20:37:24 +0000 | 
|---|---|---|
| committer | Max Horn | 2004-09-24 20:37:24 +0000 | 
| commit | fbfa606e4f44c2b3df8fae8cf8a8ba127f883cac (patch) | |
| tree | 8e6532ee1c34894ac4ad1b2a906ee1c5736f6e2b /scumm/akos.cpp | |
| parent | 924e66b0cc3f31fe54a5b26980b0b9e851620364 (diff) | |
| download | scummvm-rg350-fbfa606e4f44c2b3df8fae8cf8a8ba127f883cac.tar.gz scummvm-rg350-fbfa606e4f44c2b3df8fae8cf8a8ba127f883cac.tar.bz2 scummvm-rg350-fbfa606e4f44c2b3df8fae8cf8a8ba127f883cac.zip | |
More V7_SMOOTH_SCROLLING_HACK related fixes
svn-id: r15250
Diffstat (limited to 'scumm/akos.cpp')
| -rw-r--r-- | scumm/akos.cpp | 5 | 
1 files changed, 2 insertions, 3 deletions
| diff --git a/scumm/akos.cpp b/scumm/akos.cpp index c9bcd0ff12..66396f1a86 100644 --- a/scumm/akos.cpp +++ b/scumm/akos.cpp @@ -973,9 +973,8 @@ byte AkosRenderer::codec5(int xmoveCur, int ymoveCur) {  	bdd.srcwidth = _width;  	bdd.srcheight = _height; -	bdd.out = _outptr; -	bdd.outwidth = _outwidth; -	bdd.outheight = _outheight; +	bdd.dst = _vm->virtscr[kMainVirtScreen]; +	bdd.dst.pixels = _outptr;  	bdd.dataptr = _srcptr;  	bdd.scale_x = 255;  	bdd.scale_y = 255; | 
