diff options
author | Max Horn | 2003-05-30 00:48:35 +0000 |
---|---|---|
committer | Max Horn | 2003-05-30 00:48:35 +0000 |
commit | 5ea6cbe51d09435d4eb17b33bdb618903f09e2b6 (patch) | |
tree | 0ab9ecb82449a9fd86cc48df42adae5660b1f663 | |
parent | 94a404899a94e831fa39d3296d39a710007caaa1 (diff) | |
download | scummvm-rg350-5ea6cbe51d09435d4eb17b33bdb618903f09e2b6.tar.gz scummvm-rg350-5ea6cbe51d09435d4eb17b33bdb618903f09e2b6.tar.bz2 scummvm-rg350-5ea6cbe51d09435d4eb17b33bdb618903f09e2b6.zip |
this clip is bad: it's not needed (we clip later anyway), and it clips too much
svn-id: r8125
-rw-r--r-- | scumm/gfx.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp index 5c58206687..4a683d3ef7 100644 --- a/scumm/gfx.cpp +++ b/scumm/gfx.cpp @@ -294,8 +294,6 @@ void Scumm::updateDirtyRect(int virt, int left, int right, int top, int bottom, left = 0; if (bottom > vs->height) bottom = vs->height; - if (right > vs->width) - right = vs->width; if (virt == 0 && dirtybit) { lp = (left >> 3) + _screenStartStrip; |