diff options
Diffstat (limited to 'engines/sci/gfx/gfx_widgets.cpp')
| -rw-r--r-- | engines/sci/gfx/gfx_widgets.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/engines/sci/gfx/gfx_widgets.cpp b/engines/sci/gfx/gfx_widgets.cpp index 12cec0ada6..6a3bddee0d 100644 --- a/engines/sci/gfx/gfx_widgets.cpp +++ b/engines/sci/gfx/gfx_widgets.cpp @@ -1753,8 +1753,8 @@ int gfxw_widget_matches_snapshot(gfxw_snapshot_t *snapshot, GfxWidget *widget) {  	// (this one includes equality too)  	return ((widget->_serial >= free_above_eq || widget->_serial < free_below) &&  			(snapshot->area.x <= bounds.x && snapshot->area.y <= bounds.y && -			 snapshot->area.width >= bounds.width && -			 snapshot->area.height >= bounds.height)); +			 snapshot->area.x + snapshot->area.width >= bounds.x + bounds.width && +			 snapshot->area.y + snapshot->area.height >= bounds.y + bounds.height));  }  #define MAGIC_FREE_NUMBER -42 | 
