aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorStrangerke2014-02-19 21:41:26 +0100
committerStrangerke2014-02-19 21:45:20 +0100
commit2c7f6a9d1dd5e2a9a145304fc7ca2fe2acfd7200 (patch)
tree611ccaa7ce4e22ba407920b2de6f0f3cbdc23a03 /engines
parenta2a222e647c2227c9bf01c0023cae1aa72aadcad (diff)
downloadscummvm-rg350-2c7f6a9d1dd5e2a9a145304fc7ca2fe2acfd7200.tar.gz
scummvm-rg350-2c7f6a9d1dd5e2a9a145304fc7ca2fe2acfd7200.tar.bz2
scummvm-rg350-2c7f6a9d1dd5e2a9a145304fc7ca2fe2acfd7200.zip
CGE: Some British to American english
Diffstat (limited to 'engines')
-rw-r--r--engines/cge/cge.cpp4
-rw-r--r--engines/cge/vga13h.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/engines/cge/cge.cpp b/engines/cge/cge.cpp
index 8d8c4e4aba..e8ab3c262b 100644
--- a/engines/cge/cge.cpp
+++ b/engines/cge/cge.cpp
@@ -73,7 +73,7 @@ void CGEEngine::initSceneValues() {
void CGEEngine::init() {
debugC(1, kCGEDebugEngine, "CGEEngine::setup()");
- // Initialise fields
+ // Initialize fields
_lastFrame = 0;
_lastTick = 0;
_hero = NULL;
@@ -87,7 +87,7 @@ void CGEEngine::init() {
// Create debugger console
_console = new CGEConsole(this);
- // Initialise engine objects
+ // Initialize engine objects
_font = new Font(this, "CGE");
_text = new Text(this, "CGE");
_talk = NULL;
diff --git a/engines/cge/vga13h.cpp b/engines/cge/vga13h.cpp
index 27b5d9a9bf..d5e1be5122 100644
--- a/engines/cge/vga13h.cpp
+++ b/engines/cge/vga13h.cpp
@@ -761,7 +761,7 @@ void Vga::setColors(Dac *tab, int lum) {
if (_mono) {
destP = _newColors;
for (int idx = 0; idx < kPalCount; idx++, destP++) {
- // Form a greyscalce colour from 30% R, 59% G, 11% B
+ // Form a greyscalce color from 30% R, 59% G, 11% B
uint8 intensity = (((int)destP->_r * 77) + ((int)destP->_g * 151) + ((int)destP->_b * 28)) >> 8;
destP->_r = intensity;
destP->_g = intensity;