aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2004-08-10 02:04:15 +0000
committerTravis Howell2004-08-10 02:04:15 +0000
commit2481ebf89615166f0c268672c083369b76040cb5 (patch)
treef91e11e166d4f9f4898cc72d45930dbd272f00da /scumm
parent87f1cd48d62cf8147bd06cda941fdf9370a269f0 (diff)
downloadscummvm-rg350-2481ebf89615166f0c268672c083369b76040cb5.tar.gz
scummvm-rg350-2481ebf89615166f0c268672c083369b76040cb5.tar.bz2
scummvm-rg350-2481ebf89615166f0c268672c083369b76040cb5.zip
Fix a few remaining graphic gliches in V1 games
svn-id: r14529
Diffstat (limited to 'scumm')
-rw-r--r--scumm/costume.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/costume.cpp b/scumm/costume.cpp
index 8f9719164a..f7606c78f8 100644
--- a/scumm/costume.cpp
+++ b/scumm/costume.cpp
@@ -405,7 +405,7 @@ void CostumeRenderer::procC64(int actor) {
if (!rep)
color = *src++;
- if (0 <= y && y < _outheight && v1.x < _outwidth) {
+ if (0 <= y && y < _outheight && 0 <= v1.x && v1.x < _outwidth) {
if (!_mirror) {
LINE(0, 0); LINE(2, 2); LINE(4, 4); LINE(6, 6);
} else {