diff options
| author | Paweł Kołodziejski | 2005-05-09 17:24:25 +0000 | 
|---|---|---|
| committer | Paweł Kołodziejski | 2005-05-09 17:24:25 +0000 | 
| commit | e774f60ec65f45ea98372b27b2bf677f5b15c479 (patch) | |
| tree | 937511dcee5c16054a35ce396d80368109b7bb99 /scumm/script_v90he.cpp | |
| parent | 0a5e9f24f5e8633c3b83b37874f639c5bb8b34d1 (diff) | |
| download | scummvm-rg350-e774f60ec65f45ea98372b27b2bf677f5b15c479.tar.gz scummvm-rg350-e774f60ec65f45ea98372b27b2bf677f5b15c479.tar.bz2 scummvm-rg350-e774f60ec65f45ea98372b27b2bf677f5b15c479.zip  | |
fixed warnings
svn-id: r18004
Diffstat (limited to 'scumm/script_v90he.cpp')
| -rw-r--r-- | scumm/script_v90he.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/script_v90he.cpp b/scumm/script_v90he.cpp index 090cae7ca3..f80a895d12 100644 --- a/scumm/script_v90he.cpp +++ b/scumm/script_v90he.cpp @@ -2547,7 +2547,7 @@ void ScummEngine_v90he::o90_kernelGetFunctions() {  	case 2001:  		// Used in football  		debug(0, "o90_kernelGetFunctions: U32 code %d (args %d) %d", args[1], num - 2, args[2]); -		push(_logicHE->dispatch(args[1], num - 2, &args[2])); +		push(_logicHE->dispatch(args[1], num - 2, (int32 *)&args[2]));  		break;  	default:  		error("o90_kernelGetFunctions: default case %d", args[0]); @@ -2613,7 +2613,7 @@ void ScummEngine_v90he::o90_kernelSetFunctions() {  	case 2001:  		// Used in SoccerMLS/Soccer2004  		debug(0, "o90_kernelSetFunctions: U32 code %d (args %d) %d", args[1], num - 2, args[2]); -		_logicHE->dispatch(args[1], num - 2, &args[2]); +		_logicHE->dispatch(args[1], num - 2, (int32 *)&args[2]);  		break;  	default:  		error("o90_kernelSetFunctions: default case %d (param count %d)", args[0], num);  | 
