diff options
author | Travis Howell | 2006-10-25 23:48:47 +0000 |
---|---|---|
committer | Travis Howell | 2006-10-25 23:48:47 +0000 |
commit | 304c10261361a26a11d24e8c2bc9ca6d9b36a8ef (patch) | |
tree | 1eec04e5ee0cee1a374915e4379ec0a16d7835e1 /engines/scumm/he | |
parent | 0dbfacaf12c2566322182483452f72d72449be0c (diff) | |
download | scummvm-rg350-304c10261361a26a11d24e8c2bc9ca6d9b36a8ef.tar.gz scummvm-rg350-304c10261361a26a11d24e8c2bc9ca6d9b36a8ef.tar.bz2 scummvm-rg350-304c10261361a26a11d24e8c2bc9ca6d9b36a8ef.zip |
Switch error to warning, since code is compatbile with football2002 too
svn-id: r24516
Diffstat (limited to 'engines/scumm/he')
-rw-r--r-- | engines/scumm/he/logic_he.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/scumm/he/logic_he.cpp b/engines/scumm/he/logic_he.cpp index be607375e8..2bae9abbc2 100644 --- a/engines/scumm/he/logic_he.cpp +++ b/engines/scumm/he/logic_he.cpp @@ -549,6 +549,7 @@ int LogicHEfunshop::checkShape(int32 data0, int32 data1, int32 data4, int32 data /*********************** * Backyard Football + * Backyard Football 2002 * Backyard Football Demo * */ @@ -623,7 +624,7 @@ int32 LogicHEfootball::dispatch(int op, int numArgs, int32 *args) { default: LogicHE::dispatch(op, numArgs, args); - error("Tell sev how to reproduce it"); + warning("Tell sev how to reproduce it (%d)", op); } return res; @@ -802,7 +803,7 @@ int32 LogicHEsoccer::dispatch(int op, int numArgs, int32 *args) { default: // original range is 1001 - 1021 LogicHE::dispatch(op, numArgs, args); - warning("Tell sev how to reproduce it"); + warning("Tell sev how to reproduce it (%d)", op); } return res; |