SO_CHARSET_COLOR is a no-op in the original COMI disasm.
svn-id: r25197
This commit is contained in:
parent
35b6cfcd9c
commit
cbd16b110f
1 changed files with 1 additions and 3 deletions
|
@ -678,7 +678,7 @@ void ScummEngine_v8::o8_blastText() {
|
|||
void ScummEngine_v8::o8_cursorCommand() {
|
||||
byte subOp = fetchScriptByte();
|
||||
int a, i;
|
||||
int args[16];
|
||||
int args[4];
|
||||
|
||||
switch (subOp) {
|
||||
case 0xDC: // SO_CURSOR_ON Turn cursor on
|
||||
|
@ -729,8 +729,6 @@ void ScummEngine_v8::o8_cursorCommand() {
|
|||
break;
|
||||
case 0xE8: // SO_CHARSET_COLOR
|
||||
getStackList(args, ARRAYSIZE(args));
|
||||
for (i = 0; i < 16; i++)
|
||||
_charsetColorMap[i] = _charsetData[_string[1]._default.charset][i] = (unsigned char)args[i];
|
||||
break;
|
||||
case 0xE9: // SO_CURSOR_PUT
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue