diff options
| author | Johannes Schickel | 2005-11-13 19:35:01 +0000 |
|---|---|---|
| committer | Johannes Schickel | 2005-11-13 19:35:01 +0000 |
| commit | e0aef914fd2ef0eb852ea325028d29991e2f9a62 (patch) | |
| tree | 6bd811f691d029666f1d0f5880f67ef1b0cd0268 /kyra/screen.cpp | |
| parent | 267fc7e2f652feaf6168d65ccf2916e09fe12edb (diff) | |
| download | scummvm-rg350-e0aef914fd2ef0eb852ea325028d29991e2f9a62.tar.gz scummvm-rg350-e0aef914fd2ef0eb852ea325028d29991e2f9a62.tar.bz2 scummvm-rg350-e0aef914fd2ef0eb852ea325028d29991e2f9a62.zip | |
Fixed a bug with the sprite loader and various things related to
the scene switching code. Now the intro works correctly with a minor graphics glitch.
svn-id: r19588
Diffstat (limited to 'kyra/screen.cpp')
| -rw-r--r-- | kyra/screen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kyra/screen.cpp b/kyra/screen.cpp index 58eab34910..4ed0db1a83 100644 --- a/kyra/screen.cpp +++ b/kyra/screen.cpp @@ -1116,7 +1116,7 @@ void Screen::decodeFrame4(const uint8 *src, uint8 *dst, uint32 dstSize) { while (len--) { *dst++ = *dstOffs++; } - } + } } else if (code != 0x80) { int len = MIN(count, code & 0x3F); while (len--) { |
