aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/gfx/gfx_resmgr.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2009-04-21 19:17:39 +0000
committerFilippos Karapetis2009-04-21 19:17:39 +0000
commitc48159aa63d9e60cef41e7b4d1cfa188a7b5277f (patch)
tree7f56f2b566523e203a459b94f9e69750ba32db13 /engines/sci/gfx/gfx_resmgr.cpp
parent1453f1849b254d7e68675d0ff3da990b5749f82b (diff)
downloadscummvm-rg350-c48159aa63d9e60cef41e7b4d1cfa188a7b5277f.tar.gz
scummvm-rg350-c48159aa63d9e60cef41e7b4d1cfa188a7b5277f.tar.bz2
scummvm-rg350-c48159aa63d9e60cef41e7b4d1cfa188a7b5277f.zip
Removed per-picture port bounds, which were set to the global port bounds
svn-id: r40055
Diffstat (limited to 'engines/sci/gfx/gfx_resmgr.cpp')
-rw-r--r--engines/sci/gfx/gfx_resmgr.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/engines/sci/gfx/gfx_resmgr.cpp b/engines/sci/gfx/gfx_resmgr.cpp
index 7258418ec1..c4cea09365 100644
--- a/engines/sci/gfx/gfx_resmgr.cpp
+++ b/engines/sci/gfx/gfx_resmgr.cpp
@@ -88,15 +88,11 @@ int GfxResManager::calculatePic(gfxr_pic_t *scaled_pic, gfxr_pic_t *unscaled_pic
basic_style.brush_mode = GFX_BRUSH_MODE_SCALED;
#ifdef CUSTOM_GRAPHICS_OPTIONS
- basic_style.pic_port_bounds = _options->pic_port_bounds;
style.line_mode = _options->pic0_line_mode;
style.brush_mode = _options->pic0_brush_mode;
- style.pic_port_bounds = _options->pic_port_bounds;
#else
- basic_style.pic_port_bounds = gfx_rect(0, 10, 320, 190);
style.line_mode = GFX_LINE_MODE_CORRECT;
style.brush_mode = GFX_BRUSH_MODE_RANDOM_ELLIPSES;
- style.pic_port_bounds = gfx_rect(0, 10, 320, 190);
#endif
if (!res || !res->data)