diff options
Diffstat (limited to 'engines/scumm/he/script_v80he.cpp')
| -rw-r--r-- | engines/scumm/he/script_v80he.cpp | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/engines/scumm/he/script_v80he.cpp b/engines/scumm/he/script_v80he.cpp index 5b10944899..dd44180fa0 100644 --- a/engines/scumm/he/script_v80he.cpp +++ b/engines/scumm/he/script_v80he.cpp @@ -243,7 +243,7 @@ void ScummEngine_v80he::o80_writeConfigFile() {  }  void ScummEngine_v80he::o80_cursorCommand() { -	int a, i; +	int a, b, i;  	int args[16];  	byte subOp = fetchScriptByte(); @@ -252,12 +252,12 @@ void ScummEngine_v80he::o80_cursorCommand() {  	case 0x13:  	case 0x14:  		a = pop(); -		_wiz->loadWizCursor(a); +		_wiz->loadWizCursor(a, 0);  		break;  	case 0x3C: -		pop(); +		b = pop();  		a = pop(); -		_wiz->loadWizCursor(a); +		_wiz->loadWizCursor(a, b);  		break;  	case 0x90:		// SO_CURSOR_ON Turn cursor on  		_cursor.state = 1; | 
