diff options
| -rw-r--r-- | engines/sci/graphics/view.cpp | 5 | 
1 files changed, 0 insertions, 5 deletions
diff --git a/engines/sci/graphics/view.cpp b/engines/sci/graphics/view.cpp index ca029a7775..91303be5a7 100644 --- a/engines/sci/graphics/view.cpp +++ b/engines/sci/graphics/view.cpp @@ -912,11 +912,6 @@ void GfxView::drawScaled(const Common::Rect &rect, const Common::Rect &clipRect,  	const int16 offsetY = clipRect.top - rect.top;  	const int16 offsetX = clipRect.left - rect.left; -	// TODO: Remove? This class is not for SCI32 -	// Happens in SQ6, first room -	if (offsetX < 0 || offsetY < 0) -		return; -  	assert(scaledHeight + offsetY <= ARRAYSIZE(scalingY));  	assert(scaledWidth + offsetX <= ARRAYSIZE(scalingX));  	const byte *bitmapData = bitmap.getUnsafeDataAt(0, celWidth * celHeight);  | 
