diff options
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(); |