Skip to content

Commit

Permalink
ACCESS: Add warnings about opcodes changed in the demo version
Browse files Browse the repository at this point in the history
  • Loading branch information
Strangerke authored and dreammaster committed Dec 13, 2014
1 parent cbd772e commit 771bcc8
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions engines/access/amazon/amazon_scripts.cpp
Expand Up @@ -321,14 +321,29 @@ void AmazonScripts::executeSpecial(int commandIndex, int param1, int param2) {
loadBackground(param1, param2);
break;
case 3:
_game->_cast.doCast(param1);
if (_vm->isDemo())
warning("TODO: DEMO - LOADCELLSET");
else
_game->_cast.doCast(param1);
break;
case 4:
setInactive();
if (_vm->isDemo())
warning("TODO: DEMO - LOADNSOUND");
else
setInactive();
break;
case 5:
warning("TODO: DEMO - UNLOADCELLSET");
break;
case 6:
mWhile(param1);
break;
case 7:
warning("TODO: DEMO - ADDMONEY");
break;
case 8:
warning("TODO: DEMO - CHKMONEY");
break;
case 9:
_game->_guard.doGuard();
break;
Expand Down

0 comments on commit 771bcc8

Please sign in to comment.