Enable original method of skipping copy protection

svn-id: r14645
This commit is contained in:
Travis Howell 2004-08-20 01:26:56 +00:00
parent e11787a494
commit 6a2306c969
2 changed files with 1 additions and 9 deletions

View file

@ -2203,7 +2203,6 @@ void ScummEngine_v5::o5_startScript() {
getWordVararg(data);
/*
if (!_copyProtection) {
// Method used by original games to skip copy protection scheme
if (_gameId == GID_LOOM && _currentRoom == 69 && script == 201)
@ -2211,7 +2210,6 @@ void ScummEngine_v5::o5_startScript() {
else if ((_gameId == GID_MONKEY_VGA || _gameId == GID_MONKEY_EGA) && script == 152)
return;
}
*/
runScript(script, (op & 0x20) != 0, (op & 0x40) != 0, data);
}