aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/celobj32.h
diff options
context:
space:
mode:
authorColin Snover2016-08-17 11:44:16 -0500
committerColin Snover2016-08-19 15:23:10 -0500
commit051eae46390fe7289365f68ea2321c098d60748a (patch)
treed6a518321250fe666d15bcdf739a93b23c94c06d /engines/sci/graphics/celobj32.h
parente55b7745845e39ba385bff07d8dc45fa7317a4cb (diff)
downloadscummvm-rg350-051eae46390fe7289365f68ea2321c098d60748a.tar.gz
scummvm-rg350-051eae46390fe7289365f68ea2321c098d60748a.tar.bz2
scummvm-rg350-051eae46390fe7289365f68ea2321c098d60748a.zip
SCI32: Increase maximum line width for graphics
Torin renders pics that are wider than 1024px; SCI3 bumps the maximum line width to 4k.
Diffstat (limited to 'engines/sci/graphics/celobj32.h')
-rw-r--r--engines/sci/graphics/celobj32.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/graphics/celobj32.h b/engines/sci/graphics/celobj32.h
index e58fb50c98..21e86d03e0 100644
--- a/engines/sci/graphics/celobj32.h
+++ b/engines/sci/graphics/celobj32.h
@@ -147,7 +147,7 @@ struct CelScalerTable {
* the correct column to read from the source bitmap
* when drawing a scaled version of the source bitmap.
*/
- int valuesX[1024];
+ int valuesX[4096];
/**
* The ratio used to generate the x-values.
@@ -159,7 +159,7 @@ struct CelScalerTable {
* the correct row to read from a source bitmap when
* drawing a scaled version of the source bitmap.
*/
- int valuesY[1024];
+ int valuesY[4096];
/**
* The ratio used to generate the y-values.