diff options
| author | Travis Howell | 2004-02-24 05:03:06 +0000 | 
|---|---|---|
| committer | Travis Howell | 2004-02-24 05:03:06 +0000 | 
| commit | 3586e77e1ce77bcc461d2e4efbe6d7c847498c49 (patch) | |
| tree | 9257329919d8acb1111051f6fedc0ba67ad09f84 | |
| parent | 8505948237a74327e345236320f59e660e78c557 (diff) | |
| download | scummvm-rg350-3586e77e1ce77bcc461d2e4efbe6d7c847498c49.tar.gz scummvm-rg350-3586e77e1ce77bcc461d2e4efbe6d7c847498c49.tar.bz2 scummvm-rg350-3586e77e1ce77bcc461d2e4efbe6d7c847498c49.zip | |
Add case for 3do versions.
svn-id: r13018
| -rw-r--r-- | scumm/script_v6he.cpp | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/scumm/script_v6he.cpp b/scumm/script_v6he.cpp index a0118ba2d1..9daca63c44 100644 --- a/scumm/script_v6he.cpp +++ b/scumm/script_v6he.cpp @@ -887,6 +887,10 @@ void ScummEngine_v6he::o6_kernelSetFunctions() {  		//if (args[5] >= args[3]) {  		//}  		break; +	case 3: +	case 4: +		//Used before mini games in 3DO versions, seems safe to ignore. +		break;  	default:  		error("o6_kernelSetFunctions: default case %d (param count %d)", args[0], num);  		break; | 
