diff options
author | Max Horn | 2004-09-27 22:29:35 +0000 |
---|---|---|
committer | Max Horn | 2004-09-27 22:29:35 +0000 |
commit | 193c3bc8ee5e6b7dac74286fd5fa2d6dd41b99a6 (patch) | |
tree | 8a04164c6c54ca327f57db49f47bfcaaa726358f | |
parent | b347a5d4c019e7c5098c302f6931cc18ac226502 (diff) | |
download | scummvm-rg350-193c3bc8ee5e6b7dac74286fd5fa2d6dd41b99a6.tar.gz scummvm-rg350-193c3bc8ee5e6b7dac74286fd5fa2d6dd41b99a6.tar.bz2 scummvm-rg350-193c3bc8ee5e6b7dac74286fd5fa2d6dd41b99a6.zip |
Fix for bug #1035184 (ALL: Transition FX not working anymore)
svn-id: r15312
-rw-r--r-- | scumm/gfx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp index dc6a302f47..05c8650ad1 100644 --- a/scumm/gfx.cpp +++ b/scumm/gfx.cpp @@ -456,7 +456,7 @@ void Gdi::drawStripToScreen(VirtScreen *vs, int x, int width, int top, int botto assert(_textSurface.pixels); assert(_compositeBuf); - if (width > vs->w - x); + if (width > vs->w - x) width = vs->w - x; // Clip to the visible part of the scene |