aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/celobj32.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2016-02-19 02:50:16 +0200
committerFilippos Karapetis2016-02-19 02:50:16 +0200
commitc1dacbe65d4fa72128f7f521326beb0838784ac2 (patch)
treec7f589c868a2803d284eebbe035447485f2563df /engines/sci/graphics/celobj32.cpp
parent9aac0bdaaa03dfba9ef2a631fd80fca11cb1ac41 (diff)
downloadscummvm-rg350-c1dacbe65d4fa72128f7f521326beb0838784ac2.tar.gz
scummvm-rg350-c1dacbe65d4fa72128f7f521326beb0838784ac2.tar.bz2
scummvm-rg350-c1dacbe65d4fa72128f7f521326beb0838784ac2.zip
SCI: Use American English, like we do in other parts of ScummVM
This replaces "colour" to "color"
Diffstat (limited to 'engines/sci/graphics/celobj32.cpp')
-rw-r--r--engines/sci/graphics/celobj32.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/graphics/celobj32.cpp b/engines/sci/graphics/celobj32.cpp
index 07bac742ba..d96bf370f5 100644
--- a/engines/sci/graphics/celobj32.cpp
+++ b/engines/sci/graphics/celobj32.cpp
@@ -236,7 +236,7 @@ public:
// Fill with skip color
if (controlByte & 0x40) {
memset(_buffer + i, _transparentColor, length);
- // Next value is fill colour
+ // Next value is fill color
} else {
memset(_buffer + i, *literal, length);
++literal;
@@ -1020,7 +1020,7 @@ CelObjColor::CelObjColor(const uint8 color, const int16 width, const int16 heigh
void CelObjColor::draw(Buffer &target, const ScreenItem &screenItem, const Common::Rect &targetRect, const bool mirrorX) {
// TODO: The original engine sets this flag but why? One cannot
- // draw a solid colour mirrored.
+ // draw a solid color mirrored.
_drawMirrored = mirrorX;
draw(target, targetRect);
}