diff options
| author | Max Horn | 2002-12-30 01:17:08 +0000 | 
|---|---|---|
| committer | Max Horn | 2002-12-30 01:17:08 +0000 | 
| commit | 57b2e6e4de7f751aa51733d34e2c7cd1cc0c2382 (patch) | |
| tree | df3e132ee1d0a24cca758dc75b137c8d27818e2a | |
| parent | 2c6464c07ad135fb295c1a461518a51df89005cd (diff) | |
| download | scummvm-rg350-57b2e6e4de7f751aa51733d34e2c7cd1cc0c2382.tar.gz scummvm-rg350-57b2e6e4de7f751aa51733d34e2c7cd1cc0c2382.tar.bz2 scummvm-rg350-57b2e6e4de7f751aa51733d34e2c7cd1cc0c2382.zip | |
hm...
svn-id: r6265
| -rw-r--r-- | scumm/script_v8.cpp | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/scumm/script_v8.cpp b/scumm/script_v8.cpp index 0ce8d25305..87a85da2fb 100644 --- a/scumm/script_v8.cpp +++ b/scumm/script_v8.cpp @@ -1332,7 +1332,9 @@ void Scumm_v8::o6_kernelSetFunctions()  		// not used anymore (was smush frame rate)  		break;  	case 20:	// setBoxSlot -		setBoxScale(args[1], args[2]); +		warning("o6_kernelSetFunctions: setBoxSlot(%d, %d)", args[1], args[2]); +		// FIXME - really setBoxScale ?!? +//		setBoxScale(args[1], args[2]);  		break;  	case 21:	// setScaleSlot  		warning("o6_kernelSetFunctions: setScaleSlot(%d, %d, %d, %d, %d, %d, %d)", args[1], args[2], args[3], args[4], args[5], args[6], args[7]); | 
