diff options
author | Max Horn | 2010-11-17 12:22:08 +0000 |
---|---|---|
committer | Max Horn | 2010-11-17 12:22:08 +0000 |
commit | ee4770ffb6be50008d129ba52a5dd6f46a7d16cd (patch) | |
tree | 45be60c3403525d32f633745800c77e6afed9ca1 /engines/agos/script_ff.cpp | |
parent | dbddd758d1494f52c96b959b3d03f8e0156fb7cf (diff) | |
download | scummvm-rg350-ee4770ffb6be50008d129ba52a5dd6f46a7d16cd.tar.gz scummvm-rg350-ee4770ffb6be50008d129ba52a5dd6f46a7d16cd.tar.bz2 scummvm-rg350-ee4770ffb6be50008d129ba52a5dd6f46a7d16cd.zip |
ENGINES: Change 'colour' to 'color'
Only changed this in engines where 'color' was/is already used
almost exclusively
svn-id: r54288
Diffstat (limited to 'engines/agos/script_ff.cpp')
-rw-r--r-- | engines/agos/script_ff.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/agos/script_ff.cpp b/engines/agos/script_ff.cpp index c1cc8ca9a0..5d640af6ad 100644 --- a/engines/agos/script_ff.cpp +++ b/engines/agos/script_ff.cpp @@ -282,7 +282,7 @@ void AGOSEngine_Feeble::setupOpcodes() { OPCODE(off_setPathValues), OPCODE(off_stopClock), OPCODE(off_restartClock), - OPCODE(off_setColour), + OPCODE(off_setColor), /* 196 */ OPCODE(off_b3Set), OPCODE(off_b3Clear), @@ -638,8 +638,8 @@ void AGOSEngine_Feeble::off_restartClock() { _clockStopped = 0; } -void AGOSEngine_Feeble::off_setColour() { - // 195: set palette colour +void AGOSEngine_Feeble::off_setColor() { + // 195: set palette color uint16 c = getVarOrByte() * 4; uint8 r = getVarOrByte(); uint8 g = getVarOrByte(); |