aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/celobj32.h
diff options
context:
space:
mode:
authorColin Snover2016-10-09 10:52:08 -0500
committerColin Snover2016-10-09 11:21:46 -0500
commit40444b0aeb11da5ccde497866bffdc80e18392b8 (patch)
treec66d4664758c1704b46bc9522d6b4cd7bb8b483c /engines/sci/graphics/celobj32.h
parent8c555200d94470e554fb08324490dfb733952368 (diff)
downloadscummvm-rg350-40444b0aeb11da5ccde497866bffdc80e18392b8.tar.gz
scummvm-rg350-40444b0aeb11da5ccde497866bffdc80e18392b8.tar.bz2
scummvm-rg350-40444b0aeb11da5ccde497866bffdc80e18392b8.zip
SCI32: Clarify some identifiers
transparentColor -> skipColor displace -> origin scaledWidth -> xResolution scaledHeight -> yResolution
Diffstat (limited to 'engines/sci/graphics/celobj32.h')
-rw-r--r--engines/sci/graphics/celobj32.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/sci/graphics/celobj32.h b/engines/sci/graphics/celobj32.h
index c30529fde5..03d950a3c3 100644
--- a/engines/sci/graphics/celobj32.h
+++ b/engines/sci/graphics/celobj32.h
@@ -286,7 +286,7 @@ public:
/**
* TODO: Documentation
*/
- Common::Point _displace;
+ Common::Point _origin;
/**
* The dimensions of the original coordinate system for
@@ -301,21 +301,21 @@ public:
* scriptWidth/Height but seems to typically be changed
* to more closely match the native screen resolution.
*/
- uint16 _scaledWidth, _scaledHeight;
+ uint16 _xResolution, _yResolution;
/**
* The skip (transparent) color for the cel. When
* compositing, any pixels matching this color will not
* be copied to the buffer.
*/
- uint8 _transparentColor;
+ uint8 _skipColor;
/**
* Whether or not this cel has any transparent regions.
* This is used for optimised drawing of non-transparent
* cels.
*/
- bool _transparent; // TODO: probably "skip"?
+ bool _transparent;
/**
* The compression type for the pixel data for this cel.