From 2481ebf89615166f0c268672c083369b76040cb5 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Tue, 10 Aug 2004 02:04:15 +0000 Subject: Fix a few remaining graphic gliches in V1 games svn-id: r14529 --- scumm/costume.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scumm/costume.cpp') 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 { -- cgit v1.2.3