diff options
author | Travis Howell | 2005-04-11 14:49:42 +0000 |
---|---|---|
committer | Travis Howell | 2005-04-11 14:49:42 +0000 |
commit | f195d26b25ac9acf952caa30295fb736f5d3f82d (patch) | |
tree | 610881a3f5c88490ca6c41cd6ca5d80ee31ba0bc /scumm | |
parent | 4c4af584a01a9e825117fb5cb0a16fce6c0cfe47 (diff) | |
download | scummvm-rg350-f195d26b25ac9acf952caa30295fb736f5d3f82d.tar.gz scummvm-rg350-f195d26b25ac9acf952caa30295fb736f5d3f82d.tar.bz2 scummvm-rg350-f195d26b25ac9acf952caa30295fb736f5d3f82d.zip |
Update debug message.
svn-id: r17541
Diffstat (limited to 'scumm')
-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 4802cf3989..71e8303d31 100644 --- a/scumm/script_v90he.cpp +++ b/scumm/script_v90he.cpp @@ -2331,7 +2331,7 @@ void ScummEngine_v90he::o90_kernelGetFunctions() { break; case 2001: // Used in football - warning("o90_kernelGetFunctions: U32 code (Num %d, args1 %d args 2 %d)", num, args[1], args[2]); + debug(0, "o90_kernelGetFunctions: U32 code %d (args %d)", args[1], num - 2); push(0); break; default: @@ -2387,7 +2387,7 @@ void ScummEngine_v90he::o90_kernelSetFunctions() { break; case 2001: // Used in SoccerMLS/Soccer2004 - warning("o90_kernelSetFunctions: U32 code (Num %d, args1 %d args 2 %d)", num, args[1], args[2]); + debug(0, "o90_kernelSetFunctions: U32 code %d (args %d)", args[1], num - 2); break; default: error("o90_kernelSetFunctions: default case %d (param count %d)", args[0], num); |